Skip to content

Commit

Permalink
feat: add package as required flag
Browse files Browse the repository at this point in the history
  • Loading branch information
btrn11 committed Dec 13, 2024
1 parent f46cf25 commit 76bcd4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/package/pushupgrade/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class PackagePushRequestListCommand extends SfCommand<PackagePushRequestL
packageid: Flags.string({
char: 'p',
summary: messages.getMessage('flags.package-id.summary'),
required: true,
}),
'scheduled-last-days': Flags.integer({
char: 'l',
Expand Down Expand Up @@ -57,7 +58,7 @@ export class PackagePushRequestListCommand extends SfCommand<PackagePushRequestL
// Get results of query here
// Use const since we will add verbose later
const results = await PackagePushUpgrade.list(this.connection, {
packageId: flags.packageid!,
packageId: flags.packageid,
status: flags.status,
});

Expand Down

0 comments on commit 76bcd4b

Please sign in to comment.