You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by tr...@apache.org on 2005/06/01 12:57:59 UTC

svn commit: r179373 - in /maven/continuum/trunk: README.txt build.sh

Author: trygvis
Date: Wed Jun  1 03:57:58 2005
New Revision: 179373

URL: http://svn.apache.org/viewcvs?rev=179373&view=rev
Log:
o Making the build.sh tee the output to build.log.
  Thanks to Jerome Lacoste for the patch.

Modified:
    maven/continuum/trunk/README.txt
    maven/continuum/trunk/build.sh

Modified: maven/continuum/trunk/README.txt
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/README.txt?rev=179373&r1=179372&r2=179373&view=diff
==============================================================================
--- maven/continuum/trunk/README.txt (original)
+++ maven/continuum/trunk/README.txt Wed Jun  1 03:57:58 2005
@@ -3,15 +3,15 @@
 
 Run:
 
-  ./build.sh
+ $ sh build.sh
+
+The output of the build will be in build.log.
 
 To start continuum:
 
-  cd continuum-web/generated-runtime
-  ./bin/plexus.sh
+ $ cd continuum-web/generated-runtime
+ $ ./bin/plexus.sh
 
 To access continuum's web site, go to:
 
   http://localhost:8080/continuumweb/servlet/continuum
-
-

Modified: maven/continuum/trunk/build.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/build.sh?rev=179373&r1=179372&r2=179373&view=diff
==============================================================================
--- maven/continuum/trunk/build.sh (original)
+++ maven/continuum/trunk/build.sh Wed Jun  1 03:57:58 2005
@@ -12,7 +12,7 @@
 continuum-xmlrpc/pom.xml
 
 m2 -N install "$@"
-m2 -r -Dmaven.reactor.includes=*/pom.xml clean:clean "$@"
-m2 -r -Dmaven.reactor.includes="$includes" install "$@"
+m2 -r -Dmaven.reactor.includes=*/pom.xml clean:clean "$@" 2>&1 | tee build.log
+m2 -r -Dmaven.reactor.includes="$includes" install "$@" 2>&1 | tee -a build.log
 
-( cd continuum-plexus-application && sh build.sh "$@" )
+( cd continuum-plexus-application && sh build.sh "$@" 2>&1 | tee -a ../build.log)