linnovate/mean-cli

mv is not recognized command in windows

aminkh17 opened this issue · 0 comments

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