Don't coerce arg passed to electron (#11200)

Approving to trigger a nightly,

Apparently argument was already a bool.
:fingers-crossed: this is the last fix.
This commit is contained in:
Hubert Plociniczak 2024-09-27 15:06:59 +02:00 committed by GitHub
parent 5afcb15ff2
commit d4ecac5b68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -105,7 +105,6 @@ export const args: Arguments = await yargs(process.argv.slice(2))
type: 'boolean',
description: 'Should signing/notarization be performed (defaults to true)',
default: true,
coerce: (p: string) => p === 'true',
},
}).argv