1
0
mirror of https://github.com/natnat-mc/moonbuild synced 2026-05-11 19:51:15 +02:00

-d is cleaner

This commit is contained in:
Nathan DECHER
2020-09-13 21:07:53 +02:00
parent ffce216a34
commit 04ca1f5a10
2 changed files with 9 additions and 2 deletions
+4 -1
View File
@@ -188,7 +188,10 @@ if args.deps
io.write "(#{concat target.ins, ', '} -> #{concat target.outs, ', '})"
io.write "\n"
for name, dep in sortedpairs deps
io.write "\t\t#{name} (#{dep.name})\n"
io.write "\t\t#{name}"
if name!=dep.name
io.write " (#{dep.name})"
io.write "\n"
os.exit 0
if #args.targets==0