From 1453b93517823b64acfe841d220e7afeec425544 Mon Sep 17 00:00:00 2001 From: rjones Date: Mon, 23 Mar 2009 19:53:05 +0000 Subject: [PATCH] Fix quoting. --- febootstrap-minimize.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/febootstrap-minimize.sh b/febootstrap-minimize.sh index 90915e3..c9854a0 100755 --- a/febootstrap-minimize.sh +++ b/febootstrap-minimize.sh @@ -283,10 +283,10 @@ if [ "$pack_executables" = "yes" ]; then xargs file | grep executable | awk -F: '{print $1}'); do - base=$(basename $path) - cp $path $tmpdir - (cd $tmpdir && upx -q -q --best $base) - cat $tmpdir/$base > $path - rm $tmpdir/$base + base=$(basename "$path") + cp "$path" "$tmpdir" + (cd "$tmpdir" && upx -q -q --best "$base") + cat "$tmpdir"/"$base" > "$path" + rm "$tmpdir"/"$base" done fi -- 1.8.3.1