Spaces in filenames were not working in 'tuxpaint-import.sh'. (Fixes bug #1527884)

This commit is contained in:
William Kendrick 2006-08-13 01:14:35 +00:00
parent 55bd6552d8
commit 4720c4688f
2 changed files with 9 additions and 3 deletions

View file

@ -25,7 +25,7 @@
# (See COPYING.txt)
# September 21, 2002 - February 17, 2006
# September 21, 2002 - August 12, 2006
SAVEDIR=$HOME/.tuxpaint
@ -141,8 +141,10 @@ fi
# For each picture list...
for i in $*
for x in $(seq 1 $#)
do
i="${!x}"
if [ -e $i ]; then
# Determine a filename for it:
NEWFILENAME=`date "+%Y%m%d%H%M%S"`