We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dab3d4 commit 16732d4Copy full SHA for 16732d4
1 file changed
packages/lde-build/src/build.lua
@@ -93,7 +93,7 @@ end
93
---@param cmd string
94
function Instance:sh(cmd)
95
local res = os.execute(cmd)
96
- assert(res == 0, "failed to execute " .. cmd)
+ assert(res == 0 or res == true, "failed to execute " .. cmd)
97
end
98
99
return Instance
0 commit comments