Skip to content

Commit

Permalink
Fixed shell expansion in uninstall script (thanks, Gerry!).
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 26, 2008
1 parent ed804b6 commit 1098ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mojosetup_mainline.lua
Expand Up @@ -934,7 +934,7 @@ local function install_unix_uninstaller(desc, key)

local script =
"#!/bin/sh\n" ..
"exec " .. bin .. " uninstall '" .. id .. "' $*\n\n"
"exec " .. bin .. " uninstall '" .. id .. "' \"$@\"\n\n"

install_parent_dirs(fname, key)
install_file_from_string(fname, script, "0755", desc, key)
Expand Down

0 comments on commit 1098ee1

Please sign in to comment.