Electron 在调试autoUpdater模块时 Could not get code signature for running application 解决方法

调试 autoUpdater API时提示   Could not get code signature for running application 异常

解决方法

执行以下代码对Electron.app进行签名即可解决

codesign --deep --force --verbose --sign - node_modules/electron/dist/Electron.app

也可以在 package.json 中增加postinstall自动签名脚本

"scripts": {
    //.....
  
    "sign-dev-electron-app": "codesign --deep --force --verbose --sign - node_modules/electron/dist/Electron.app",
    "postinstall": "npm run sign-dev-electron-app"
  },

你可能感兴趣的:(Electron,electron,javascript,前端,debug,autoupdate)