browserify / watchify

watch mode for browserify builds
Other
1.79k stars 203 forks source link

Permission denied errno 126 #348

Open sheksushant opened 7 years ago

sheksushant commented 7 years ago

Error :

sh: /Users/sushantshekhar/Work/learn_react/react_devslopes/react-ingredients/node_modules/.bin/watchify: Permission denied npm ERR! code ELIFECYCLE npm ERR! errno 126 npm ERR! react-skeleton@1.0.0 start:watchify src/main.jsx -v -t [ babelify --presets [ react ] ] -o public/js/main.js npm ERR! Exit status 126 npm ERR! npm ERR! Failed at the react-skeleton@1.0.0 start script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

the Start Script :

"start": "watchify src/main.jsx -v -t [ babelify --presets [ react ] ] -o public/js/main.js"

goto-bus-stop commented 5 years ago

Did you manage to solve this problem?

SebiTimeWaster commented 4 years ago

i run into the same problems with lerna and browserify, the only solution i found is to fully qualify the call: node node_modules/browserify/bin/cmd.js ...args It somehow has to do with running it from a mounted second disk, while running from home directory works. this is some really quirky rights problem under linux.