cordova build Command failed with exit code EACCES

后端 未结 9 1738
半阙折子戏
半阙折子戏 2020-12-13 23:40

Cordova build failed with error code : EACCESS

$ cordova build android
Running command: /home/user/proj1/platforms/android/cordova/build 
execvp(): Permissi         


        
9条回答
  •  孤街浪徒
    2020-12-14 00:34

    For some reason build is not currently an executable file. To fix that, open the terminal and enter the following commands:

    $ cd /platforms/android/cordova
    $ chmod a+x build
    

提交回复
热议问题