Skip to content

Commit

Permalink
Change flag descriptions back
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Mikusa <[email protected]>
  • Loading branch information
dmikusa authored and robdimsdale committed May 1, 2023
1 parent 244cff7 commit 5a53922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/create_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ func createStack() *cobra.Command {
},
}
cmd.Flags().StringVar(&flags.config, "config", "", "path to a stack descriptor file (required)")
cmd.Flags().StringVar(&flags.buildOutput, "build-output", "", "path or image reference to output the build image OCI archive (required)")
cmd.Flags().StringVar(&flags.runOutput, "run-output", "", "path or image reference to output the run image OCI archive (required)")
cmd.Flags().StringVar(&flags.buildOutput, "build-output", "", "path to output the build image OCI archive (required)")
cmd.Flags().StringVar(&flags.runOutput, "run-output", "", "path to output the run image OCI archive (required)")
cmd.Flags().StringSliceVar(&flags.secrets, "secret", nil, "secret to be passed to your Dockerfile")
cmd.Flags().BoolVar(&flags.unbuffered, "unbuffered", false, "do not buffer image contents into memory for fast access")
cmd.Flags().BoolVar(&flags.publish, "publish", false, "publish to a registry")
Expand Down

0 comments on commit 5a53922

Please sign in to comment.