You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by Paulo Gaspar <pa...@krankikom.de> on 2001/02/01 15:54:34 UTC

Small contribution: Convert utility batch files for Windows

The subject says what it is.

There are 2 batch files because (at least in my WinNT4):

  for %%f in (..\bin\vel*.jar) do CLASSPATH=%CLASSPATH%;%%f  

only adds one file to the CLASSPATH while:

  for %%f in (..\bin\vel*.jar) do call buildcp %%f

adds all that match the wildcards.

(buildcp.bat active statement is just a:
  set CLASSPATH=%CLASSPATH%;%1
)


Have fun,

Paulo Gaspar