diff options
Diffstat (limited to 'scripts/auto-build/run-automated-builder')
-rwxr-xr-x | scripts/auto-build/run-automated-builder | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder index 4e86ae5e..bbef063c 100755 --- a/scripts/auto-build/run-automated-builder +++ b/scripts/auto-build/run-automated-builder @@ -1,12 +1,5 @@ #!/bin/sh - -## TODO: -# - change the logfile name -# - use a wrapper for rsync to handle platform specifics -# - check whether rsync (or any other upload mechanism) is present -# and mail accordingly - cd / # On Mac OS X, there are some handy things in Fink, but don't override the @@ -53,16 +46,7 @@ run_build_script () echo "----------------------------------------" >> "$LOGFILE" 2>&1 sh "$BUILDSCRIPT" >> "$LOGFILE" 2>&1 fi - - case $SYSTEM in - mingw*) - /c/cygwin/bin/sh -c \ - "rsync --archive --no-links --copy-links ${LOGFILE} rsync://${RSYNC_SERVER}/upload/${DATE}/logs/" - ;; - *) - rsync -a "$LOGFILE" rsync://${RSYNC_SERVER}/upload/${DATE}/logs/ - ;; - esac + rsync_file $LOGFILE ${DATE}/logs/`basename $LOGFILE` # send status report if something failed completion_test=$(tail -1 ${LOGFILE}) |