diff options
author | Dave Reisner <d@falconindy.com> | 2010-06-14 07:05:55 -0400 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-06-14 07:05:55 -0400 |
commit | ebbf701f966205d5820b1a3ccaf7c73117282666 (patch) | |
tree | ec10eac6aa197d326ce79d1286074cf4176ab35a | |
parent | 70d66ecdb668e3947fb5e8b8f2f68f17c571e848 (diff) | |
download | squashfu-ebbf701f966205d5820b1a3ccaf7c73117282666.tar.gz |
don't quote entire exclude with flag
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |