diff options
author | intrigeri <intrigeri@boum.org> | 2012-06-15 20:27:01 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-06-15 20:27:01 +0200 |
commit | 1b48bc44445cba33a748bb8ad2833d7e2187d1ad (patch) | |
tree | 477ff1aa4617d199853a20a007736efba982e4f3 | |
parent | f7488968c0ab80b923927cc8bf6376fd28fd5022 (diff) | |
download | backupninja-1b48bc44445cba33a748bb8ad2833d7e2187d1ad.tar.gz backupninja-1b48bc44445cba33a748bb8ad2833d7e2187d1ad.tar.bz2 |
rsync: stop passing $excludes as a single argument.
-rw-r--r-- | handlers/rsync.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/rsync.in b/handlers/rsync.in index c584e7f..2620c47 100644 --- a/handlers/rsync.in +++ b/handlers/rsync.in @@ -1116,7 +1116,7 @@ for SECTION in $include; do set_dest info "Syncing $SECTION on $dest_path..." - debug $nice $rsync "${rsync_options[@]}" $filelist_flag "$excludes" $batch_option $orig $dest_path + debug $nice $rsync "${rsync_options[@]}" $filelist_flag $excludes $batch_option $orig $dest_path set_pipefail $nice $rsync "${rsync_options[@]}" $filelist_flag "$excludes" $batch_option $orig $dest_path | tee -a $log |