aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--handlers/rsync.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dd7418a..e1ac76d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
version 1.0 -- UNRELEASED
handler changes
+ rysnc:
+ . Fix numericids option (Redmine#3691).
dup:
. Make the .dup generated by ninjahelper more consistent with
example.dup.
diff --git a/handlers/rsync.in b/handlers/rsync.in
index 6c772e1..cc255a3 100644
--- a/handlers/rsync.in
+++ b/handlers/rsync.in
@@ -887,7 +887,7 @@ function set_filelist {
function set_rsync_options {
- if [ ! -z "$numericids" ]; then
+ if [ "$numericids" != "0" ]; then
rsync_options="$rsync_options --numeric-ids"
fi