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
exec: 'rm' is not recognized as an internal or external command, operable program or batch file.
I thought going into the module manually and changing in bundle.js the command ' _shelljs.default.exec(rm -rf ${workingDir});' to windows equivalent '
_shelljs.default.exec(rd -r ${workingDir});' would do something but in the end I just got the error:
The system cannot find the file specified.
error: exec: The system cannot find the file specified.
The text was updated successfully, but these errors were encountered:
Thanks for letting me know. Indeed, I believe I used some commands that are not available on Windows. I'll take a look at it. But I don't even have Windows to test it, so I can't promise anything in the short term. PR welcome. :)
When trying to deploy on windows I get
exec: 'rm' is not recognized as an internal or external command, operable program or batch file.
I thought going into the module manually and changing in bundle.js the command ' _shelljs.default.exec(
rm -rf ${workingDir}
);' to windows equivalent '_shelljs.default.exec(
rd -r ${workingDir}
);' would do something but in the end I just got the error:The system cannot find the file specified.
error: exec: The system cannot find the file specified.
The text was updated successfully, but these errors were encountered: