[MAVENUPLOAD-1015] Added databinder repo

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@426543 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2006-07-28 14:35:11 +00:00
parent 5a5a7ba09f
commit 128ae8e0e5
2 changed files with 19 additions and 1 deletions

View File

@ -24,5 +24,15 @@ cd $HOME/repository-staging/to-ibiblio/maven2
# ideally we would use --ignore-existing but we need to copy the metadata files # ideally we would use --ignore-existing but we need to copy the metadata files
if [ -z $NO_SSH ]
then
if [ -z $SSH_OPTS ]
then
RSYNC_SSH="-e ssh"
else
RSYNC_SSH="-e \"ssh $SSH_OPTS\""
fi
fi
echo "Syncing $FROM -> $TO" echo "Syncing $FROM -> $TO"
rsync --exclude-from=$HOME/components/maven-meeper/src/bin/syncopate/exclusions.txt $RSYNC_OPTS -Lrtivz -e "ssh $SSH_OPTS" $FROM $TO rsync --exclude-from=$HOME/components/maven-meeper/src/bin/syncopate/exclusions.txt $RSYNC_OPTS -Lrtivz $RSYNC_SSH $FROM $TO

View File

@ -0,0 +1,8 @@
#!/bin/sh
FROM=rsync://databinder.net/maven/net/databinder/
TO=net/databinder/
NO_SSH=true
source ./m2-sync.sh