diff options
author | Vincent Ambo <tazjin@google.com> | 2021-04-30T11·01+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-04-30T11·27+0200 |
commit | 768f3986a9399c82fc61ddcd4865d10f3bb93351 (patch) | |
tree | c15a02b2578bc1fff313b9f6c522063581701073 /tools/nixery/popcount/popcount.go | |
parent | 13d97c9e51a3c6cc2abcb354bcd0519a49aeed68 (diff) |
feat(build): Run `go vet` as a step in the GitHub Actions workflow
Diffstat (limited to 'tools/nixery/popcount/popcount.go')
-rw-r--r-- | tools/nixery/popcount/popcount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/popcount/popcount.go b/tools/nixery/popcount/popcount.go index d632090c0dc2..dab10aae64c0 100644 --- a/tools/nixery/popcount/popcount.go +++ b/tools/nixery/popcount/popcount.go @@ -90,7 +90,7 @@ func channelMetadata(channel string) meta { commit, err := ioutil.ReadAll(commitResp.Body) failOn(err, "failed to read commit from response") if commitResp.StatusCode != 200 { - log.Fatalf("non-success status code when fetching commit: %s", string(commit), commitResp.StatusCode) + log.Fatalf("non-success status code when fetching commit: %s (%v)", string(commit), commitResp.StatusCode) } return meta{ |