You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2005/12/20 23:42:15 UTC

svn commit: r358130 - in /maven/components/trunk/maven-meeper/src/bin: copy-updated-poms.sh update-poms.sh

Author: carlos
Date: Tue Dec 20 14:42:07 2005
New Revision: 358130

URL: http://svn.apache.org/viewcvs?rev=358130&view=rev
Log:
Split update-poms.sh

Added:
    maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh   (with props)
Modified:
    maven/components/trunk/maven-meeper/src/bin/update-poms.sh

Added: maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh?rev=358130&view=auto
==============================================================================
--- maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh (added)
+++ maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh Tue Dec 20 14:42:07 2005
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+src=/home/projects/maven/repository-staging/pom-svn-repository
+dest=/home/projects/maven/repository-staging/to-ibiblio/maven2
+
+rsync -e ssh -v -rpt --exclude=.svn --exclude=updated-poms.log $src/ $dest/ > updated-poms.log
+
+for f in `grep .pom updated-poms.log` ; do 
+  md5sum $dest/$f > $dest/$f.md5 ; 
+  sha1sum $dest/$f > $dest/$f.sha1;
+done
+
+rm updated-poms.log

Propchange: maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-meeper/src/bin/copy-updated-poms.sh
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: maven/components/trunk/maven-meeper/src/bin/update-poms.sh
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-meeper/src/bin/update-poms.sh?rev=358130&r1=358129&r2=358130&view=diff
==============================================================================
--- maven/components/trunk/maven-meeper/src/bin/update-poms.sh (original)
+++ maven/components/trunk/maven-meeper/src/bin/update-poms.sh Tue Dec 20 14:42:07 2005
@@ -3,14 +3,6 @@
 src=/home/projects/maven/repository-staging/pom-svn-repository
 dest=/home/projects/maven/repository-staging/to-ibiblio/maven2
 
-cd $src
-/usr/local/subversion/bin/svn update
+/usr/local/subversion/bin/svn update $src
 
-rsync -e ssh -v -rpt --exclude=.svn --exclude=updated-poms.log $src/ $dest/ > updated-poms.log
-
-for f in `grep .pom updated-poms.log` ; do 
-  md5sum $dest/$f > $dest/$f.md5 ; 
-  sha1sum $dest/$f > $dest/$f.sha1;
-done
-
-rm updated-poms.log
+./copy-updated-poms.sh
\ No newline at end of file