Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix conflicting aliases in apps commands #1616

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions commands/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ For more information about logs, see [How to View Logs](https://www.digitalocean
"Starts a console session",
`Instantiates a console session for a component of an app.`,
Writer,
aliasOpt("l"),
aliasOpt("cs"),
)
AddStringFlag(console, doctl.ArgAppDeployment, "", "", "Starts a console session for a specific deployment ID. Defaults to current deployment.")

Expand All @@ -243,7 +243,7 @@ For more information about logs, see [How to View Logs](https://www.digitalocean

Only basic information is included with the text output format. For complete app details including an updated app spec, use the `+"`"+`--output`+"`"+` global flag and specify the JSON format.`,
Writer,
aliasOpt("c"),
aliasOpt("p"),
displayerType(&displayers.Apps{}),
)
AddStringFlag(propose, doctl.ArgAppSpec, "", "", "Path to an app spec in JSON or YAML format. For more information about app specs, see the [app spec reference](https://www.digitalocean.com/docs/app-platform/concepts/app-spec)", requiredOpt())
Expand Down
Loading