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 424c590 commit 7f8c057Copy full SHA for 7f8c057
utils/buildactions/utils.lua
@@ -96,7 +96,7 @@ function os.sha256_file(path)
96
local windows = os.host() == "windows"
97
local s, errc
98
if windows then
99
- s, errc = os.outputof(string.format("utils\\7z\\7za.exe h -scrcSHA256 \"%s\"", path))
+ s, errc = os.outputof(string.format("call \"utils\\7z\\7za.exe\" h -scrcSHA256 \"%s\"", path))
100
else
101
s, errc = os.outputof(string.format("sha256sum \"%s\" | awk '{ print $1 }'", path))
102
end
0 commit comments