diff options
author | Jason van Zyl <jvanzyl@apache.org> | 2006-12-01 23:16:19 +0000 |
---|---|---|
committer | Jason van Zyl <jvanzyl@apache.org> | 2006-12-01 23:16:19 +0000 |
commit | 9edce822a781760f898939e5b6d13e6b14d9a286 (patch) | |
tree | 5a099530a364da47afc7ed99973def341b613808 /maven-meeper | |
parent | 2894177c0b51a7fd35ab3a00e6b6e70852e02e36 (diff) | |
download | archiva-9edce822a781760f898939e5b6d13e6b14d9a286.tar.gz archiva-9edce822a781760f898939e5b6d13e6b14d9a286.zip |
o adding a little more logging
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@481444 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-meeper')
-rwxr-xr-x | maven-meeper/src/bin/synchronize-central-to-ibiblio.sh | 4 | ||||
-rwxr-xr-x | maven-meeper/src/bin/synchronize.sh | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/maven-meeper/src/bin/synchronize-central-to-ibiblio.sh b/maven-meeper/src/bin/synchronize-central-to-ibiblio.sh index dba27f400..0f1cab071 100755 --- a/maven-meeper/src/bin/synchronize-central-to-ibiblio.sh +++ b/maven-meeper/src/bin/synchronize-central-to-ibiblio.sh @@ -4,7 +4,11 @@ . $1 +echo ">>>>>>>>>>>>>>>>>> Syncing Maven 2.x repository to Ibiblio" + rsync -e ssh --delete --max-delete=10 -v -riplt $MAVEN2_REPO/ $IBIBLIO_SYNC_HOST:$M2_IBIBLIO_SYNC_DIR +echo ">>>>>>>>>>>>>>>>>> Syncing Maven 1.x plugins to Ibiblio" + # M1 Sync only for plugins ... rsync -e ssh --delete --max-delete=10 -v -riplt $MAVEN1_REPO/ $IBIBLIO_SYNC_HOST:$M1_IBIBLIO_SYNC_DIR diff --git a/maven-meeper/src/bin/synchronize.sh b/maven-meeper/src/bin/synchronize.sh index 4ee418a3e..43abc34bc 100755 --- a/maven-meeper/src/bin/synchronize.sh +++ b/maven-meeper/src/bin/synchronize.sh @@ -44,7 +44,7 @@ echo "JAVA = $JAVA" [ "$MODE" = "batch" ] && echo && echo "Press any key to run syncopate, or hit ^C to quit." && echo -echo "Running Syncopate" +echo ">>>>>>>>>>>>>>>>>> Running Syncopate" ( cd $SYNCOPATE @@ -59,7 +59,7 @@ retval=$?; if [ $retval != 0 ]; then exit $retval; fi [ "$MODE" = "batch" ] && echo && echo "Press any key to run the m1 to m2 conversion, or hit ^C to quit." && echo -echo "Running Maven 1.x to Maven 2.x conversion ..." +echo ">>>>>>>>>>>>>>>>>> Running Maven 1.x to Maven 2.x conversion ..." ( cd $REPOCLEAN @@ -74,7 +74,7 @@ retval=$?; if [ $retval != 0 ]; then exit $retval; fi [ "$MODE" = "batch" ] && echo && echo "Press any key to run manual fixes, or hit ^C to quit." && echo -echo "Removing commons-logging 1.1-dev" +echo ">>>>>>>>>>>>>>>>>> Removing commons-logging 1.1-dev" # hack prevent commons-logging-1.1-dev CL=$MAVEN2_REPO/commons-logging/commons-logging @@ -101,8 +101,6 @@ sha1sum $CL/maven-metadata.xml > $CL/maven-metadata.xml.sha1 [ "$MODE" = "batch" ] && echo && echo "Press any key to run the sync to Ibiblio, or hit ^C to quit." && echo -echo "Synchronizing to ibiblio" - ./synchronize-central-to-ibiblio.sh $syncProperties retval=$?; if [ $retval != 0 ]; then exit $retval; fi retval=$?; if [ $retval != 0 ]; then exit $retval; fi |