Skip to content

Commit

Permalink
fix: update success message
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Nov 12, 2024
1 parent 10fcd5e commit f37d979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/agent/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class AgentCreate extends SfCommand<AgentCreateResult> {
`Successfully created ${flags.name} in ${flags['target-org'].getUsername() ?? 'the target org'}.`
)
);
this.log(`Use ${colorize('dim', `sf agent open --agent ${flags.name}`)} to view the agent in the browser.`);
this.log(`Use ${colorize('dim', `sf org open agent --name ${flags.name}`)} to view the agent in the browser.`);

return { isSuccess: true };
}
Expand Down

0 comments on commit f37d979

Please sign in to comment.