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

后端 未结 1 1799
囚心锁ツ
囚心锁ツ 2020-12-16 17:47

I searched for the cause of this error and found that I have to change permissions or run gulp using sudo, but still got the same error. Can anyone please help...

in

1条回答
  •  囚心锁ツ
    2020-12-16 18:19

    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 -- .
    

    0 讨论(0)
提交回复
热议问题