aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-04 04:00:33 +0900
committerOphestra <cat@gensokyo.uk>2026-05-04 04:02:02 +0900
commitb2b40b07e83af85330157e134d1cc591ed4f7c76 (patch)
tree78439d07612e05ec7d916b24ba8e5d55097204e6 /internal
parentda11b26ec16ef9ed61045fdbb03c4090286bfeba (diff)
cmd/dist: optional verbosity
This makes output less noisy. The build is fast enough not to require progress indication. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
-rw-r--r--internal/rosa/hakurei.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/rosa/hakurei.go b/internal/rosa/hakurei.go
index eb28fee7..2d30e094 100644
--- a/internal/rosa/hakurei.go
+++ b/internal/rosa/hakurei.go
@@ -7,9 +7,8 @@ func (t Toolchain) newHakurei(
withHostname bool,
) pkg.Artifact {
hostname := `
-echo '# Building test helper (hostname).'
-go build -v -o /bin/hostname /usr/src/hostname/main.go
-echo
+echo 'Building test helper (hostname).'
+go build -o /bin/hostname /usr/src/hostname/main.go
`
if !withHostname {
hostname = ""