fix(cli): doom make: remove extra stdout output

Amend: 18403ab521
This commit is contained in:
Henrik Lissner
2025-09-14 21:04:39 -04:00
parent 2775cc75f9
commit 0d41af1ef7

View File

@@ -37,7 +37,7 @@
(when (stringp entry) (when (stringp entry)
(insert entry "\n"))) (insert entry "\n")))
(if (null outfile) (if (null outfile)
(print! "%s --" (buffer-string)) (print! "%s" (buffer-string))
(print! (start "Wrote %s") name) (print! (start "Wrote %s") name)
(unless dryrun? (unless dryrun?
(write-region (buffer-string) nil outfile))))))))) (write-region (buffer-string) nil outfile)))))))))