aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-06-14 07:05:55 -0400
committerDave Reisner <d@falconindy.com>2010-06-14 07:05:55 -0400
commitebbf701f966205d5820b1a3ccaf7c73117282666 (patch)
treeec10eac6aa197d326ce79d1286074cf4176ab35a
parent70d66ecdb668e3947fb5e8b8f2f68f17c571e848 (diff)
downloadsquashfu-ebbf701f966205d5820b1a3ccaf7c73117282666.tar.gz
don't quote entire exclude with flag
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index 0fa1d1e..cff8346 100755
--- a/squashfu
+++ b/squashfu
@@ -205,7 +205,7 @@ action_backup () {
debug "rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]/#/--exclude } $UNION_MOUNT"
info "Creating new incremental"
- /usr/bin/rsync "${RSYNC_OPTS[@]}" "${INCLUDES[@]}" "${EXCLUDES[@]/#/--exclude }" "$UNION_MOUNT"
+ /usr/bin/rsync "${RSYNC_OPTS[@]}" "${INCLUDES[@]}" ${EXCLUDES[@]/#/--exclude } "$UNION_MOUNT"
rsync_ret=$?
for error in ${DEL_BIN_ON_FAIL[@]}; do