From 84fa8d65f4d4fc1acf96e3883693237b0ed1aea1 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 21 Feb 2024 19:27:14 +0000 Subject: [PATCH] fennel: system: verbose log of command that was run --- pkgs/anoia/init.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/anoia/init.fnl b/pkgs/anoia/init.fnl index 935ab02..0d2e282 100644 --- a/pkgs/anoia/init.fnl +++ b/pkgs/anoia/init.fnl @@ -16,7 +16,7 @@ (fn system [s] (match (os.execute s) - res res + res (do (print (.. "Executed \"" s "\", exit code " (tostring res))) res) (nil err) (error (.. "Error executing \"" s "\" (" err ")")))) (fn hash [str]