From 43a46a1a3a50e08d5a774c73a2528b877ac29451 Mon Sep 17 00:00:00 2001 From: ewy Date: Wed, 29 Apr 2026 22:45:11 +0200 Subject: fix list by adding forgotten format arg --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index ff7fc9e..ebf3a15 100644 --- a/main.go +++ b/main.go @@ -140,7 +140,7 @@ func main() { if *flags.List { for _, s := range st.Sources { for _, t := range s.Targets { - _, _ = spool.Print(t.ShortestId() + paths.Ifs) + _, _ = spool.Print("%v\n", t.ShortestId()+paths.Ifs) } } os.Exit(0) -- cgit v1.3.1