aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/run-automated-builder
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-28 16:23:18 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-28 16:23:18 +0000
commit432de6d7dfcd59fe61cc535c6334bc83e19d0572 (patch)
tree69598fe9727db7b42d93044eb1e6a59964baa597 /scripts/auto-build/run-automated-builder
parent1a63f4df033ee433accb30839145ca48564e2fe6 (diff)
set rsync server via a single variable in auto-build-common
svn path=/trunk/; revision=16312
Diffstat (limited to 'scripts/auto-build/run-automated-builder')
-rwxr-xr-xscripts/auto-build/run-automated-builder4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder
index 911e25ac..4e86ae5e 100755
--- a/scripts/auto-build/run-automated-builder
+++ b/scripts/auto-build/run-automated-builder
@@ -57,10 +57,10 @@ run_build_script ()
case $SYSTEM in
mingw*)
/c/cygwin/bin/sh -c \
- "rsync --archive --no-links --copy-links ${LOGFILE} rsync://128.238.56.50/upload/${DATE}/logs/"
+ "rsync --archive --no-links --copy-links ${LOGFILE} rsync://${RSYNC_SERVER}/upload/${DATE}/logs/"
;;
*)
- rsync -a "$LOGFILE" rsync://128.238.56.50/upload/${DATE}/logs/
+ rsync -a "$LOGFILE" rsync://${RSYNC_SERVER}/upload/${DATE}/logs/
;;
esac