clean brittle tests
build-binaries / build-binaries (pull_request) Successful in 2m8s
test-image / build-image (pull_request) Successful in 47s
test / test (pull_request) Successful in 1m24s

This commit is contained in:
2026-06-20 12:11:43 +02:00
parent f1fd03ee83
commit ecf8a916a0
8 changed files with 145 additions and 194 deletions
+1 -4
View File
@@ -13,7 +13,6 @@ import (
"fmt"
"io"
"os"
"text/tabwriter"
"git.westgate.pw/ShadowsOverWestgate/sow-tools/internal/app"
"git.westgate.pw/ShadowsOverWestgate/sow-tools/internal/buildinfo"
@@ -256,11 +255,9 @@ func usage(w io.Writer) {
}
func list(w io.Writer) {
tw := tabwriter.NewWriter(w, 0, 2, 2, ' ', 0)
for _, b := range Registry {
fmt.Fprintf(tw, " %s\t%s\t%s\n", b.Name, b.Bin, b.Summary)
fmt.Fprintf(w, "%s\t%s\t%s\n", b.Name, b.Bin, b.Summary)
}
tw.Flush()
}
func builderHelp(w io.Writer, b Builder) {