aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-18 00:39:00 -0500
committerDave Reisner <d@falconindy.com>2010-01-18 00:39:00 -0500
commite8d85f9ad2dd153a7601555b2436a4492c0cccf5 (patch)
treea7ab20c28ead196206fd18600766cf9c4985d725
parent1723f5107a6df7b3516ce809a394d3edeb571a40 (diff)
downloadsquashfu-e8d85f9ad2dd153a7601555b2436a4492c0cccf5.tar.gz
Don't quote include/exclude arrays in rsync op -- causes havoc
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index 2182d9f..8e167af 100755
--- a/squashfu
+++ b/squashfu
@@ -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 $?
}