summaryrefslogtreecommitdiffstats
path: root/bin/wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wrapper.sh')
-rw-r--r--bin/wrapper.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/wrapper.sh b/bin/wrapper.sh
index 3a93475b7f..d29d5b9c07 100644
--- a/bin/wrapper.sh
+++ b/bin/wrapper.sh
@@ -2,6 +2,8 @@ path_remove () {
echo $PATH | tr ':' '\n' | grep -v "^$1\$" | tr '\n' ':'
}
+PATH="$(path_remove $(dirname $0))"
+
quote(){
sed -e "s,','\\\\'',g; 1s,^,',; \$s,\$,',;" << EOF
$1
@@ -23,7 +25,5 @@ save () {
exec_real () {
eval set -- "$saved"
- scriptdir="$(dirname $0)"
- PATH="$(path_remove $scriptdir)"
exec "$(basename $0)" "$@"
}