Skip to content

Commit

Permalink
CLI arg for making without signing on MacOS (chaiNNer-org#2160)
Browse files Browse the repository at this point in the history
CLI arg for making without signing on macos
  • Loading branch information
joeyballentine authored Aug 29, 2023
1 parent 1ec090c commit 0801fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const config = {
appBundleId: 'app.chainner',
appCategoryType: 'public.app-category.graphics-design',
extendInfo: './src/public/Info.plist',
...(process.argv.includes('--dry-run')
...(process.argv.includes('--dry-run') || process.argv.includes('--no-sign')
? {}
: {
osxSign: {},
Expand Down

0 comments on commit 0801fb9

Please sign in to comment.