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 53e7288 commit bbefc30Copy full SHA for bbefc30
1 file changed
src/commands/package/bundle/install.ts
@@ -72,7 +72,7 @@ export class PackageBundlesInstall extends SfCommand<BundleSObjects.PkgBundleVer
72
let devHubOrgId: string;
73
// If the input already looks like a 15/18-char org ID starting with 00D, use it directly.
74
// Otherwise resolve the alias or username through the auth store.
75
- if (/^00D[a-zA-Z0-9]{12,15}$/.test(devHubInput)) {
+ if (/^00D[a-zA-Z0-9]{12}([a-zA-Z0-9]{3})?$/.test(devHubInput)) {
76
devHubOrgId = devHubInput;
77
} else {
78
const devHubOrg = await Org.create({ aliasOrUsername: devHubInput });
0 commit comments