File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,18 @@ The specified org %s is not a Dev Hub.
42
42
43
43
Username or alias of the target org. Not required if the ` target-org ` configuration variable is already set.
44
44
45
+ # flags.optionalTargetOrg.summary
46
+
47
+ Username or alias of the target org.
48
+
45
49
# flags.targetDevHubOrg.summary
46
50
47
51
Username or alias of the Dev Hub org. Not required if the ` target-dev-hub ` configuration variable is already set.
48
52
53
+ # flags.optionalTargetDevHubOrg.summary
54
+
55
+ Username or alias of the Dev Hub org.
56
+
49
57
# flags.apiVersion.description
50
58
51
59
Override the api version used for api requests made by this command
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ export const optionalOrgFlag = Flags.custom({
102
102
char : 'o' ,
103
103
noCacheDefault : true ,
104
104
parse : async ( input : string | undefined ) => maybeGetOrg ( input ) ,
105
+ summary : messages . getMessage ( 'flags.optionalTargetOrg.summary' ) ,
105
106
default : async ( ) => maybeGetOrg ( ) ,
106
107
defaultHelp : async ( context ) => {
107
108
if ( context . options instanceof Org ) {
@@ -211,7 +212,7 @@ export const requiredHubFlag = Flags.custom({
211
212
*/
212
213
export const optionalHubFlag = Flags . custom ( {
213
214
char : 'v' ,
214
- summary : messages . getMessage ( 'flags.targetDevHubOrg .summary' ) ,
215
+ summary : messages . getMessage ( 'flags.optionalTargetDevHubOrg .summary' ) ,
215
216
noCacheDefault : true ,
216
217
parse : async ( input : string | undefined ) => maybeGetHub ( input ) ,
217
218
default : async ( ) => maybeGetHub ( ) ,
You can’t perform that action at this time.
0 commit comments