Skip to content

Commit

Permalink
don't quote entire exclude with flag
Browse files Browse the repository at this point in the history
  • Loading branch information
falconindy committed Jun 14, 2010
1 parent 70d66ec commit ebbf701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion squashfu
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ebbf701

Please sign in to comment.