I want my batch file to remain 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 starting the build ant. Any ideas?
Thank.
source
share