Gulp error internal/child_process.js:298 throw errnoException(err, 'spawn'); Error: spawn EACCES

旧巷老猫 提交于 2019-11-29 03:56:11

It looks like you don't have permission to run some files, Try by typing next command on the root path of your project:

chmod -R u+x .

If it is fixed now you must find which files had the incorrect permissions. Type next command if you want to undo changes to find those problematic files:

git checkout -- .
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!