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
So I have a case sensitive filesystem, running OSX, using NVM and I can't use slush.
$ npm install -g slush slush-angular
$ slush angular
[slush] No generator by name: "angular" was found!
[slush] Try installing it with `npm install -g slush-angular` first.
I actually found the issue: bin/slush.js:L189 :: return path.toLowerCase() resulting in /users/chadrien/.nvm/v0.10.29/lib/node_modules instead of /Users/chadrien/.nvm/v0.10.29/lib/node_modules (notice the uppercase U)
So is the toLowerCase() intended? Initial commit is here: f396bd6 (ping @alexeyraspopov)
If not I'd be happy to fork/add test case/pull request 😃
The text was updated successfully, but these errors were encountered:
So I have a case sensitive filesystem, running OSX, using NVM and I can't use slush.
I actually found the issue:
bin/slush.js:L189 :: return path.toLowerCase()
resulting in/users/chadrien/.nvm/v0.10.29/lib/node_modules
instead of/Users/chadrien/.nvm/v0.10.29/lib/node_modules
(notice the uppercase U)So is the
toLowerCase()
intended? Initial commit is here: f396bd6 (ping @alexeyraspopov)If not I'd be happy to fork/add test case/pull request 😃
The text was updated successfully, but these errors were encountered: