You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by da...@apache.org on 2006/12/08 23:57:10 UTC

svn commit: r484834 - in /webservices/muse/trunk/modules/muse-tools/scripts: update_install.bat update_install.sh update_install.xml

Author: danj
Date: Fri Dec  8 14:57:09 2006
New Revision: 484834

URL: http://svn.apache.org/viewvc?view=rev&rev=484834
Log:
Cleaned up text messages on update script(s).

Modified:
    webservices/muse/trunk/modules/muse-tools/scripts/update_install.bat
    webservices/muse/trunk/modules/muse-tools/scripts/update_install.sh
    webservices/muse/trunk/modules/muse-tools/scripts/update_install.xml

Modified: webservices/muse/trunk/modules/muse-tools/scripts/update_install.bat
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-tools/scripts/update_install.bat?view=diff&rev=484834&r1=484833&r2=484834
==============================================================================
--- webservices/muse/trunk/modules/muse-tools/scripts/update_install.bat (original)
+++ webservices/muse/trunk/modules/muse-tools/scripts/update_install.bat Fri Dec  8 14:57:09 2006
@@ -3,7 +3,7 @@
 set BATCH_DIR=%~dp0
 set MUSE_HOME=%BATCH_DIR%\..
 
-echo Running update (this will take a few minutes)...
+echo Checking for updates on platform libraries...
 call ant -f "%BATCH_DIR%\update_install.xml" -DMUSE_HOME="%MUSE_HOME%" -quiet -e
 
 if %ERRORLEVEL% == 0 goto SUCCESS

Modified: webservices/muse/trunk/modules/muse-tools/scripts/update_install.sh
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-tools/scripts/update_install.sh?view=diff&rev=484834&r1=484833&r2=484834
==============================================================================
--- webservices/muse/trunk/modules/muse-tools/scripts/update_install.sh (original)
+++ webservices/muse/trunk/modules/muse-tools/scripts/update_install.sh Fri Dec  8 14:57:09 2006
@@ -4,7 +4,7 @@
 export MUSE_HOME=$SHELL_DIR/..
 
 if which ant > /dev/null 2>&1; then
-    echo "Running update (this will take a few minutes)..."
+    echo "Checking for updates on platform libraries..."
     if ant -f "$SHELL_DIR/update_install.xml" -DMUSE_HOME="$MUSE_HOME" -quiet -e; then
         echo "Update complete!"
         exit 0

Modified: webservices/muse/trunk/modules/muse-tools/scripts/update_install.xml
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-tools/scripts/update_install.xml?view=diff&rev=484834&r1=484833&r2=484834
==============================================================================
--- webservices/muse/trunk/modules/muse-tools/scripts/update_install.xml (original)
+++ webservices/muse/trunk/modules/muse-tools/scripts/update_install.xml Fri Dec  8 14:57:09 2006
@@ -1,27 +1,19 @@
 <project default="update_install">
     <target name="update_install">
-        <echo message=""/>
-        <echo message="creating temporary directory..."/>
-        <echo message=""/>
+        <echo message="Creating temporary directory..."/>
 
         <tempfile property="TEMP_DIR"/>
         <mkdir dir="${TEMP_DIR}"/>
 
-        <echo message=""/>
-        <echo message="downloading newest update build script..."/>
-        <echo message=""/>
+        <echo message="Downloading the latest update script..."/>
 
         <get src="http://ws.apache.org/muse/build/update.xml" dest="${TEMP_DIR}/update.xml"/>
         <loadproperties srcFile="${TEMP_DIR}/update.xml"/>
 
-        <echo message=""/>
-        <echo message="running update script..."/>
-        <echo message=""/>
+        <echo message="Received the latest update script. Starting update..."/>
         <ant antfile="${TEMP_DIR}/update.xml" inheritAll="true"/>
         
-        <echo message=""/>
-        <echo message="deleting temporary directory..."/>
-        <echo message=""/>
+        <echo message="Deleting temporary directory..."/>
         <delete dir="${TEMP_DIR}"/>
     </target>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org