diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-06-21 21:25:34 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-06-21 21:25:34 +0200 |
commit | c8c5708b5ee03d3b379c027b064df0e04c1940b8 (patch) | |
tree | 951c0eb721b1c0a36877cf07143cd5a5deb4e881 /backend | |
parent | 687034e80393bdc6244086a7b033a8026658b8cc (diff) | |
download | acritoxinstaller-c8c5708b5ee03d3b379c027b064df0e04c1940b8.zip acritoxinstaller-c8c5708b5ee03d3b379c027b064df0e04c1940b8.tar.gz |
escape parameters for $as_root
Diffstat (limited to 'backend')
-rwxr-xr-x | backend/backend.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/backend.sh.in b/backend/backend.sh.in index 15912b6..d5ebe87 100755 --- a/backend/backend.sh.in +++ b/backend/backend.sh.in @@ -60,7 +60,7 @@ function get_root() which $as_root &>/dev/null && break done fi - $as_root "$p" --pid $$ "${O_ARGS[@]}" &>/dev/null + $as_root -- "$p" --pid $$ "${O_ARGS[@]}" &>/dev/null exit $? fi } |