mirror of https://github.com/apache/maven.git
[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:
parent
5a5a7ba09f
commit
128ae8e0e5
|
@ -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
|
||||
|
||||
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"
|
||||
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
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
FROM=rsync://databinder.net/maven/net/databinder/
|
||||
TO=net/databinder/
|
||||
|
||||
NO_SSH=true
|
||||
|
||||
source ./m2-sync.sh
|
Loading…
Reference in New Issue