summaryrefslogtreecommitdiffstats
path: root/import-images.sh
diff options
context:
space:
mode:
Diffstat (limited to 'import-images.sh')
-rwxr-xr-ximport-images.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/import-images.sh b/import-images.sh
index 2d8f06c..e5be16d 100755
--- a/import-images.sh
+++ b/import-images.sh
@@ -13,7 +13,7 @@ prefix=background/$theme
[ "$mode" = "bootsplash" ] && prefix=bootsplash/data/bootsplash
for f in "$@"; do
- r=`identify -format '%wx%h' $f`
+ r=`identify -format '%wx%h' "$f"`
d=$theme/$prefix-$r.png
- cp -af $f $d
+ cp -af "$f" "$d"
done