fix debug output for execute

This commit is contained in:
Michael Jerger 2024-12-30 10:07:39 +01:00
parent 7d53dcd775
commit e2a6dd4cee

View file

@ -27,5 +27,7 @@
config ::core/execution]
(let [{:keys [dry-run debug]} config]
(doseq [c commands]
(when debug
(println c))
(when-not dry-run
(apply t/shell c)))))