don't preserve timestamps when uploading the log files.
authorbjacke <bjacke@1e5ffdc8-eadd-0310-9daa-9cb4117fe24b>
Tue, 14 Jul 2009 16:20:06 +0000 (16:20 +0000)
committerbjacke <bjacke@1e5ffdc8-eadd-0310-9daa-9cb4117fe24b>
Tue, 14 Jul 2009 16:20:06 +0000 (16:20 +0000)
This should prevent that we get fake build age displayed
in the build farm just because the build machine has a
screwed clock.

git-svn-id: file:///home/svn/build-farm/trunk@881 1e5ffdc8-eadd-0310-9daa-9cb4117fe24b

build_test.fns

index 9421afb0b4b6308f818bdac68227a1eb84378d66..017e6b7d0e65a00d67b3971795faffe658661875 100644 (file)
@@ -75,7 +75,7 @@ send_logs() {
                find $log -size +40000 | $XARGS_I sh -c 'dd if={} bs=1024 count=20000 of={}.tmp && mv {}.tmp {} &&  echo "\n***LOG TRUNCATED***" >> {}'
                find $err -size +40000 | $XARGS_I sh -c 'dd if={} bs=1024 count=20000 of={}.tmp && mv {}.tmp {} &&  echo "\n***LOG TRUNCATED***" >> {}'
 
-               rsync $* -ct -q --password-file=.password -z --timeout=200 \
+               rsync $* -c -q --password-file=.password -z --timeout=200 \
                    "$log" "$err" $host@build.samba.org::build_farm_data/
        fi
 }