Command /usr/bin/codesign failed with exit code 1

后端 未结 30 3591
执笔经年
执笔经年 2020-11-27 14:17

I have the following error:

Command /usr/bin/codesign failed with exit code 1

Here is what I already did for trying to fix this:

30条回答
  •  [愿得一人]
    2020-11-27 14:58

    If you're using phonegap/cordova:

    I got this when building from Cordova but the solution for me was much simpler. A permissions issue.

    Just set the files to correct permissions

    chmod -R 774 ./projectfolder
    

    And then set ownership

    chown -R youraccname:staff ./projectfolder 
    

提交回复
热议问题