diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-15 10:48:12 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-15 10:48:12 -0500 |
commit | c53556525976ce4d80c8e25b4c55c4774090e30e (patch) | |
tree | 57d5da046e46e0218b2b0445da75f280af5f12f4 /squashfu | |
parent | 535cfb847481997e97576d13ce78a9ace4bb4541 (diff) | |
download | squashfu-c53556525976ce4d80c8e25b4c55c4774090e30e.tar.gz |
Quote includes and excludes arrays in rsync execution
Diffstat (limited to 'squashfu')
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,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 $? } |