diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-18 00:39:00 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-18 00:39:00 -0500 |
commit | e8d85f9ad2dd153a7601555b2436a4492c0cccf5 (patch) | |
tree | a7ab20c28ead196206fd18600766cf9c4985d725 | |
parent | 1723f5107a6df7b3516ce809a394d3edeb571a40 (diff) | |
download | squashfu-e8d85f9ad2dd153a7601555b2436a4492c0cccf5.tar.gz |
Don't quote include/exclude arrays in rsync op -- causes havoc
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ create_new_incremental () { debug "rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]} "$UNION_MOUNT"" info "Creating new incremental" - /usr/bin/rsync ${RSYNC_OPTS[@]} "${INCLUDES[@]}" "${EXCLUDES[@]}" "$UNION_MOUNT" + /usr/bin/rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]} "$UNION_MOUNT" return $? } |