Skip to content

Commit 5757405

Browse files
chore: change prompt message for name flag
1 parent f84f3a4 commit 5757405

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

messages/agent.generate.authoring-bundle.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Directory where the authoring bundle files will be generated.
1818

1919
Name (label) of the authoring bundle. If not provided, you will be prompted for it.
2020

21+
# flags.name.prompt
22+
23+
Name (label) of the authoring bundle
24+
2125
# examples
2226

2327
- Generate an authoring bundle from a specification file:

src/commands/agent/generate/authoring-bundle.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export default class AgentGenerateAuthoringBundle extends SfCommand<AgentGenerat
5858
private static readonly FLAGGABLE_PROMPTS = {
5959
name: {
6060
message: messages.getMessage('flags.name.summary'),
61+
promptMessage: messages.getMessage('flags.name.prompt'),
6162
validate: (d: string): boolean | string => d.length > 0 || 'Name cannot be empty',
6263
required: true,
6364
},

0 commit comments

Comments
 (0)