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
When running "mean init something" in the windows based system, it raised an error for mv is not a recognized command in the file of mean-cli\lib\install.js
I change mv phrases with move (for windows) in the line of 296 shell.exec('mv ' + source + ' ' + target , function (status, error) {
with shell.exec('move ' + source + ' ' + target , function (status, error) {
and then run again and now seems it's running well.
Thanks
The text was updated successfully, but these errors were encountered:
Hi guys,
When running "mean init something" in the windows based system, it raised an error for mv is not a recognized command in the file of mean-cli\lib\install.js
I change mv phrases with move (for windows) in the line of 296
shell.exec('mv ' + source + ' ' + target , function (status, error) {
with
shell.exec('move ' + source + ' ' + target , function (status, error) {
and then run again and now seems it's running well.
Thanks
The text was updated successfully, but these errors were encountered: