implement-c4k-and-provs #1

Merged
bom merged 17 commits from implement-c4k-and-provs into main 2024-10-18 09:22:48 +00:00
Showing only changes of commit a4f1e69808 - Show all commits

View file

@ -11,3 +11,15 @@
(println command))
(when-not dry-run
(apply t/shell command))))
(defn-spec execute-output! string?
[command seq?
devops ::d/devops]
(let [{:keys [dry-run debug]} devops]
(when debug
(println command))
(when-not dry-run
(->> command
(t/shell {:out :string})
:out
clojure.string/trim))))