minor changes

This commit is contained in:
coderaiser 2012-12-10 05:30:12 -05:00
parent 99316bdd1d
commit 268cb781ec
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@
if( Util.strCmp(pCommand, 'exit') )
if(main.WIN32)
pCommand = 'taskkill /PID ' + process.pid;
pCommand = 'taskkill -f /PID ' + process.pid;
else
pCommand = 'kill -9 ' + process.pid;
}