From 828a77d20bbf6ac6cc20ecd183af0b92e5ef2afd Mon Sep 17 00:00:00 2001 From: Tangent Date: Sat, 13 Jan 2024 17:58:25 -0700 Subject: [PATCH] more readable required_program error --- utility-functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility-functions.lua b/utility-functions.lua index 4e7adbd..4cdefe2 100644 --- a/utility-functions.lua +++ b/utility-functions.lua @@ -47,7 +47,7 @@ utility.required_program = function(name) -- TODO verify this works on Linux / macOS if os.execute(command .. tostring(name)) ~= 0 then - error(tostring(name) .. " must be installed and in the path") + error("\n\n" .. tostring(name) .. " must be installed and in the path\n") end end