You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2014/05/28 22:33:13 UTC

svn commit: r1598131 - /sling/trunk/tooling/ide/upload-p2-site.sh

Author: rombert
Date: Wed May 28 20:33:12 2014
New Revision: 1598131

URL: http://svn.apache.org/r1598131
Log:
upload-p2-site.sh - do not rebuild the project

Modified:
    sling/trunk/tooling/ide/upload-p2-site.sh

Modified: sling/trunk/tooling/ide/upload-p2-site.sh
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/upload-p2-site.sh?rev=1598131&r1=1598130&r2=1598131&view=diff
==============================================================================
--- sling/trunk/tooling/ide/upload-p2-site.sh (original)
+++ sling/trunk/tooling/ide/upload-p2-site.sh Wed May 28 20:33:12 2014
@@ -2,14 +2,11 @@
 
 SITE_LOCATION='public_html/sling/ide/preview'
 
-# 1. Build fresh package
-mvn -q clean verify
-
-# 2. Clean the current update site
+# 1. Clean the current update site
 ssh people.apache.org "rm -rf $SITE_LOCATION/*"
 
-# 3. Upload the new update site
+# 2. Upload the new update site
 scp p2update/target/*.zip people.apache.org:$SITE_LOCATION
 
-# 4. Unzip the new update site
+# 3. Unzip the new update site
 ssh people.apache.org "cd $SITE_LOCATION && unzip -o *.zip && rm -f *.zip"