Skip to content

Commit 1d306ec

Browse files
committed
rename parms 2
1 parent b10aff3 commit 1d306ec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/cli/generate/bundle/GenerateBundle.definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const GenerateBundleDefinition: ICommandDefinition = {
2929
description: "Generate a CICS bundle in the working directory. " +
3030
"The associated data is constructed from a combination of the " +
3131
"command-line options and the contents of package.json. If package.json exists, " +
32-
"no options are required. If package.json does not exist, both --startscript and --nodejsapp are required.",
32+
"no options are required. If package.json does not exist, both --start-script and --nodejsapp are required.",
3333
type: "command",
3434
handler: __dirname + "/GenerateBundle.handler",
3535
options: [ BundleidOption, BundleversionOption, NodejsappOption, StartscriptOption, PortOption,

src/cli/shared/Csdgroup.option.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const CsdgroupOption: ICommandOptionDefinition = {
2525
description: "Specifies the CSD group (up to 8 characters) for the bundle resource. If a bundle is " +
2626
"deployed, a definition is added to this group. If a bundle is undeployed, then the " +
2727
"definition is removed from this group. The definition is added or removed from the CSD of each system " +
28-
"that is specified by the --scope option. The --csdgroup and --resgroup options are " +
28+
"that is specified by the --scope option. The --csd-group and --res-group options are " +
2929
"mutually exclusive."
3030
};
3131

src/cli/shared/Resgroup.option.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const ResgroupOption: ICommandOptionDefinition = {
2525
conflictsWith: [ "csdgroup" ],
2626
description: "Specifies the BAS resource group (up to 8 characters) for the bundle resource. If a bundle is " +
2727
"deployed, a resource is defined in the BAS data repository. If a bundle is undeployed, the " +
28-
"definition is removed. The --csdgroup and --resgroup options are " +
28+
"definition is removed. The --csd-group and --res-group options are " +
2929
"mutually exclusive."
3030
};
3131

src/imperative.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const config: IImperativeConfig = {
6060
description: "Specifies the CSD group (up to 8 characters) for the bundle resource. If a bundle is " +
6161
"deployed then a definition is added to this group; if a bundle is undeployed then the " +
6262
"definition is removed from this group. The CSD group is changed for each CICS system " +
63-
"that is specified by the --scope option. The --csdgroup and --resgroup options are " +
63+
"that is specified by the --scope option. The --csd-group and --res-group options are " +
6464
"mutually exclusive.",
6565
type: "string",
6666
name: "csd-group",
@@ -73,7 +73,7 @@ const config: IImperativeConfig = {
7373
optionDefinition: {
7474
description: "Specifies the BAS resource group (up to 8 characters) for the bundle resource. If a bundle is " +
7575
"deployed then a resource is defined in the BAS data repository; if a bundle is undeployed then the " +
76-
"definition is removed. The --csdgroup and --resgroup options are mutually exclusive.",
76+
"definition is removed. The --csd-group and --res-group options are mutually exclusive.",
7777
type: "string",
7878
name: "res-group",
7979
aliases: ["rg", "resgroup"],

0 commit comments

Comments
 (0)