Skip to content

Commit

Permalink
Write install_resources.unzip for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
qaisjp committed Aug 26, 2018
1 parent 5a6a3ce commit 5042231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/buildactions/install_resources.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local unzip = function(zip_path, target_path)
if os.host() == "windows" then
os.executef("call \"utils\\7z\\7za.exe\" x \"%s\" -aoa -o\"%s\"", zip_path, target_path)
else
-- Linux: TODO
os.executef("unzip \"%s\" -d \"%s\"", zip_path, target_path)
end
end

Expand Down

0 comments on commit 5042231

Please sign in to comment.