Make numericids defaults to null (fixes #3691)

This commit is contained in:
Silvio Rhatto 2011-12-24 11:11:48 -02:00 committed by intrigeri
parent f351306d82
commit 46000c0308
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
version 1.0 -- UNRELEASED version 1.0 -- UNRELEASED
handler changes handler changes
rysnc:
. Fix numericids option (Redmine#3691).
dup: dup:
. Make the .dup generated by ninjahelper more consistent with . Make the .dup generated by ninjahelper more consistent with
example.dup. example.dup.

View File

@ -887,7 +887,7 @@ function set_filelist {
function set_rsync_options { function set_rsync_options {
if [ ! -z "$numericids" ]; then if [ "$numericids" != "0" ]; then
rsync_options="$rsync_options --numeric-ids" rsync_options="$rsync_options --numeric-ids"
fi fi