summaryrefslogtreecommitdiffstats
path: root/febootstrap-minimize.sh
diff options
context:
space:
mode:
Diffstat (limited to 'febootstrap-minimize.sh')
-rwxr-xr-xfebootstrap-minimize.sh10
1 files 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