Skip to content

Commit

Permalink
quiet gsutil
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCech committed Nov 23, 2022
1 parent 85e47fe commit a6f77a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/build/docker/build.go
Expand Up @@ -152,7 +152,7 @@ func BuildImage(version string, arch config.Architecture, grafanaDir string, use
}
gcsURL := fmt.Sprintf("gs://grafana-prerelease/artifacts/docker/%s/%s", version, imageFile)
//nolint:gosec
cmd = exec.Command("gsutil", "cp", imageFile, gcsURL)
cmd = exec.Command("gsutil", "-q", "cp", imageFile, gcsURL)
cmd.Dir = buildDir
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit a6f77a0

Please sign in to comment.