Merge pull request #60 from johnpatcher/fix/if-condition-quotation
duplicity-backup.sh: Fix quotation issue
This commit is contained in:
commit
60234a22c3
1 changed files with 1 additions and 1 deletions
|
|
@ -417,7 +417,7 @@ include_exclude()
|
||||||
done
|
done
|
||||||
|
|
||||||
# Include/Exclude globbing filelist
|
# Include/Exclude globbing filelist
|
||||||
if [ $INCEXCFILE != '' ]; then
|
if [ "$INCEXCFILE" != '' ]; then
|
||||||
TMP=" --include-globbing-filelist ""'"$INCEXCFILE"'"
|
TMP=" --include-globbing-filelist ""'"$INCEXCFILE"'"
|
||||||
INCLUDE=$INCLUDE$TMP
|
INCLUDE=$INCLUDE$TMP
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue