summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-29 22:45:11 +0200
committerewy <ewy0@protonmail.com>2026-04-29 22:45:11 +0200
commit43a46a1a3a50e08d5a774c73a2528b877ac29451 (patch)
tree8ef856569288a7e8e5fea594c2ae4a277d8c5526 /main.go
parent7a116ec86693d07725be6b0233f0c0bab6e65d9d (diff)
fix list by adding forgotten format arg
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
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)