Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Return control from external command to a batch file

I'm doing a batch file to unify all the Phonegap commands to create an app. All seems work well, but after the command phonegap create appName my cmd stops the batch script and doesn't continue working. I suppose that Phonegap's commands finish with an "exit" or similar, but I'm not sure.

Does someone know if there is any way to run this commands in a batch file without this problem? Is there any way to return the control to the batch script?

Thanks!

like image 376
jgarciabt Avatar asked Apr 20 '14 13:04

jgarciabt


1 Answers

Try this:

call phonegap create appName
like image 141
foxidrive Avatar answered Sep 23 '22 17:09

foxidrive