toffy || Yuiko Koyanagi

Results 5 comments of toffy || Yuiko Koyanagi

@xkenneth Hey, I think you can set asarUnpack in build option. in your package.json (I use electron-builder to build) ``` "build": { "asarUnpack": "node_modules/keytar" } ``` https://github.com/electron-userland/electron-builder/issues/3940#issuecomment-900527250 My versions are...

@Wizdave97 Did you do code-sign? I got same error `no suitable image found` when I forgot to do code sign. So I am not very good at using electron but...

@Wizdave97 also, you should add in your plist file ``` com.apple.security.cs.allow-unsigned-executable-memory ``` in package.json ``` entitlements: 'entitlements.mac.plist' entitlementsInherit: 'entitlements.mac.plist' ``` When you completely do code-sign and write the above lines...

@maccman Hmm.. I see. Are you sure ``asarUnpack`` option is working? I don't know about electron-forge but maybe you need to unpack for keytar. Even so if you have still...