You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ng build --prod && cp -r ../appengine/* ../webapp/
.....
'cp' is not recognized as an internal or external command,
[INFO] operable program or batch file.
[INFO] npm ERR! code ELIFECYCLE
[INFO] npm ERR! errno 1
[INFO] npm ERR! client@0.0.0 build: ng build --prod && cp -r ../appengine/* ../webapp/
[INFO] npm ERR! Exit status 1
[INFO] npm ERR!
[INFO] npm ERR! Failed at the client@0.0.0 build script.
[INFO] npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
The text was updated successfully, but these errors were encountered:
Hey, @aschworer
There is no 'cp' on Windows, you should use 'xcopy' instead.
You could fix this error by editing package.json file.
You need to replace copy command part (cp -r ../appengine/* ../webapp/) with Windows equivalent:
xcopy ..\appengine\* ..\webapp\ /E /H /C /I /Y
The text was updated successfully, but these errors were encountered: