diff options
| author | Julia Hansbrough <flowerhack@google.com> | 2019-01-23 02:02:31 -0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-23 11:02:31 +0100 |
| commit | e3bc2f2b5ab48f9fc96628c2cd2abf984c8baeb3 (patch) | |
| tree | 83ffff9eb664bd76510a7e5b76fbd335304fdc34 | |
| parent | 9a689e2d3deb71d7d5b9686cc56ea4a6a4f4b9e6 (diff) | |
syz-ci: fix error log output
This eases debugging when running syz-ci locally.
| -rw-r--r-- | syz-ci/syzupdater.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/syzupdater.go b/syz-ci/syzupdater.go index 66d910725..61e67e48e 100644 --- a/syz-ci/syzupdater.go +++ b/syz-ci/syzupdater.go @@ -93,7 +93,7 @@ func NewSyzUpdater(cfg *Config) *SyzUpdater { } compilerID, err := osutil.RunCmd(time.Minute, "", "go", "version") if err != nil { - log.Fatalf("%v", exe) + log.Fatalf("%v", err) } return &SyzUpdater{ repo: vcs.NewSyzkallerRepo(syzkallerDir), |
