aboutsummaryrefslogtreecommitdiffstats
path: root/squashfu
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-15 10:48:12 -0500
committerDave Reisner <d@falconindy.com>2010-01-15 10:48:12 -0500
commitc53556525976ce4d80c8e25b4c55c4774090e30e (patch)
tree57d5da046e46e0218b2b0445da75f280af5f12f4 /squashfu
parent535cfb847481997e97576d13ce78a9ace4bb4541 (diff)
downloadsquashfu-c53556525976ce4d80c8e25b4c55c4774090e30e.tar.gz
Quote includes and excludes arrays in rsync execution
Diffstat (limited to 'squashfu')
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index 1dcbf41..6899c24 100755
--- a/squashfu
+++ b/squashfu
@@ -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 $?
}