Skip to content

Commit

Permalink
build(app-shell): do not force mac code signing when in dev mode (#12677
Browse files Browse the repository at this point in the history
)
  • Loading branch information
shlokamin committed May 11, 2023
1 parent b84734e commit eb47e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-shell/electron-builder.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = async () => ({
category: 'public.app-category.productivity',
type: DEV_MODE ? 'development' : 'distribution',
icon: project === 'robot-stack' ? 'build/icon.icns' : 'build/three.icns',
forceCodeSigning: true,
forceCodeSigning: !DEV_MODE,
gatekeeperAssess: true,
},
dmg: {
Expand Down

0 comments on commit eb47e80

Please sign in to comment.