简体   繁体   中英

Batch execution stops after building project from ant

I want to build a project and execute some commands from a batch file. Here are my batch commands

cd C:\\MyFolder ant xslt echo completed!! When I'm executing, it builds the project but it never comes to echo completed!! line. In real scenario i want to execute some batch commands instead of echo completed!! .

Use call ant xslt instead. start /wait ant xslt should work as well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM