Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,9 @@ module.exports = function (argv: string[]): void {
)
.option('--azure-credential', 'Use Microsoft Entra ID for authentication')
.addOption(
new Option('--oidc', 'Use OpenID Connect trusted publishing for authentication').conflicts([
'pat',
'azureCredential',
])
new Option('--oidc', 'Use OpenID Connect trusted publishing for authentication')
.conflicts(['pat', 'azureCredential'])
.hideHelp(true)
)
.option('-t, --target <targets...>', `Target architectures. Valid targets: ${ValidTargets}`)
.option('--ignore-other-target-folders', `Ignore other target folders. Valid only when --target <target> is provided.`)
Expand Down
Loading