Merge pull request #60 from johnpatcher/fix/if-condition-quotation

duplicity-backup.sh: Fix quotation issue
This commit is contained in:
zertrin 2014-02-05 17:50:19 +01:00
commit 60234a22c3

View file

@ -417,7 +417,7 @@ include_exclude()
done
# Include/Exclude globbing filelist
if [ $INCEXCFILE != '' ]; then
if [ "$INCEXCFILE" != '' ]; then
TMP=" --include-globbing-filelist ""'"$INCEXCFILE"'"
INCLUDE=$INCLUDE$TMP
fi