Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get 'spawn cmd ENOENT' when try to build Cordova application (event.js:85)

Get this error in windows cmd when I try to build (emulate) Cordova app.

D:\dev\Cordova\toDoList>cordova build android  Running command: D:\dev\Cordova\toDoList\platforms\android\cordova\build.bat events.js:85   throw er; // Unhandled 'error' event         ^ Error: spawn cmd ENOENT at exports._errnoException (util.js:746:11) at Process.ChildProcess._handle.onexit (child_process.js:1046:32) at child_process.js:1137:20 at process._tickCallback (node.js:355:11) ERROR building one of the platforms: Error: D:\dev\Cordova\toDoList\platforms\android\cordova\build.bat: Command failed with exit code 1 You may not have the required environment or OS to build this project 
like image 824
valverde93 Avatar asked Feb 20 '15 08:02

valverde93


1 Answers

I checked system variables one more time and found the cause of the problem: missing C:\Windows\System32\ variable. I added it and that solved my problem

Hope, it help you too.

like image 185
valverde93 Avatar answered Oct 08 '22 04:10

valverde93