aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/auto-build-common
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-30 18:02:22 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-30 18:02:22 +0000
commit14024cc69c12c544dedfdc642d8e7b68ee710f0a (patch)
tree9439de8f45a70d840fe2940b97fda84c49b5fa54 /scripts/auto-build/auto-build-common
parentf8f0cf8d4893c30b498ba30873b8cda02d75e587 (diff)
remove Cygwin rsync hack, MSYS now includes its own rsync
svn path=/trunk/; revision=16495
Diffstat (limited to 'scripts/auto-build/auto-build-common')
-rw-r--r--scripts/auto-build/auto-build-common10
1 files changed, 1 insertions, 9 deletions
diff --git a/scripts/auto-build/auto-build-common b/scripts/auto-build/auto-build-common
index ab4aca3c..40d6a69b 100644
--- a/scripts/auto-build/auto-build-common
+++ b/scripts/auto-build/auto-build-common
@@ -71,15 +71,7 @@ rsync_distro()
# let rsync handle the cleanup with --delete
DISTRO=$(basename $1)
echo "rsyncing $DISTRO to ${1}:"
- RSYNC_COMMAND="rsync -a --delete-before rsync://${RSYNC_SERVER}/distros/${DISTRO}/ ${1}/"
- case $SYSTEM in
- mingw*)
- /c/cygwin/bin/sh -c "$RSYNC_COMMAND"
- ;;
- *)
- $RSYNC_COMMAND
- ;;
- esac
+ rsync -a --delete-before rsync://${RSYNC_SERVER}/distros/${DISTRO}/ ${1}/
}
# Mac OS X's included git or svn might be really old, so try Fink first