Przeglądaj źródła

fix: use correct print

jose-fully-ported 2 lat temu
rodzic
commit
9ad5f2d5cc
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      cli/cmd/docker/builder.go

+ 1 - 1
cli/cmd/docker/builder.go

@@ -373,6 +373,6 @@ func isRunningInGithubActions() (bool, error) {
 	}
 	defer resp.Body.Close() //nolint:errcheck
 
-	fmt.Println("%d\n", resp.StatusCode)
+	fmt.Printf("%d\n", resp.StatusCode)
 	return resp.StatusCode == http.StatusOK, nil
 }