We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ec3bf commit 0674125Copy full SHA for 0674125
src/commands/force/package1/beta/version/display.ts
@@ -24,7 +24,7 @@ export class Package1VersionDisplayCommand extends SfdxCommand {
24
longDescription: messages.getMessage('packageIdLong'),
25
required: true,
26
validate: (id) => {
27
- if (id.startsWith('04t') && id.length === 18) {
+ if (id.startsWith('04t') && [18, 15].includes(id.length)) {
28
return true;
29
} else {
30
throw new SfError(messages.getMessage('packageIdInvalid'));
0 commit comments