patrickl    02/02/12 21:55:21

  Modified:    catalina/src/bin Tag: tomcat_40_branch cpappend.bat
  Log:
  Add support for spaces in path names
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.4.3   +18 -0     jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat
  
  Index: cpappend.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat,v
  retrieving revision 1.2.4.2
  retrieving revision 1.2.4.3
  diff -u -r1.2.4.2 -r1.2.4.3
  --- cpappend.bat      12 Feb 2002 23:53:02 -0000      1.2.4.2
  +++ cpappend.bat      13 Feb 2002 05:55:21 -0000      1.2.4.3
  @@ -1 +1,19 @@
  +rem ---------------------------------------------------------------------------
  +rem Append to CLASSPATH
  +rem
  +rem $Id: cpappend.bat,v 1.2.4.3 2002/02/13 05:55:21 patrickl Exp $
  +rem ---------------------------------------------------------------------------
  +
  +rem Process the first argument
  +if ""%1"" == """" goto end
   set CLASSPATH=%CLASSPATH%;%1
  +shift
  +
  +rem Process the remaining arguments
  +:setArgs
  +if ""%1"" == """" goto doneSetArgs
  +set CLASSPATH=%CLASSPATH% %1
  +shift
  +goto setArgs
  +:doneSetArgs
  +:end
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to