Skip to content

Commit

Permalink
feat: hide deprecated run command
Browse files Browse the repository at this point in the history
The run command is still accessible  and can still be used in CI if needed, but it is not removed from the documented behavior.

Signed-off-by: Ben Meier <[email protected]>
  • Loading branch information
astromechza authored Jun 19, 2024
1 parent 91f6a55 commit 396127c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/command/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func init() {
var runCmd = &cobra.Command{
Use: "run [--file=score.yaml] [--output=compose.yaml]",
Args: cobra.NoArgs,
Short: "Translate the SCORE file to docker-compose configuration",
Short: "(Deprecated) Translate the SCORE file to docker-compose configuration",
Hidden: true,
RunE: run,
// don't print the errors - we print these ourselves in main()
SilenceErrors: true,
Expand Down

0 comments on commit 396127c

Please sign in to comment.