I want my batch file to stay open after processing is complete.
Here is my code:
set CLASSPATH=C:\XSLTANT\examples\word_transform\apache-ant-1.8.1\bin
set PATH=%CLASSPATH%
ant >> transform.log
echo "See transform.log for results"
pause
It closes instantly after it runs the ant
build. Any ideas?
Thanks.