Skip to content

Commit e761207

Browse files
authored
fix: fmt on cmd/up.go file (#18)
1 parent 99fb800 commit e761207

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

cmd/up.go

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ import (
1515
)
1616

1717
type UpCmd struct {
18-
EnvDir string `help:"Directory containing the environment." required:"" default:"./env"`
19-
Name string `help:"Name of the environment to start." required:"" short:"n" default:"default"`
20-
NoConfigure bool `help:"Don't template config files before starting containers"`
21-
Overwrite bool `help:"Overwrite existing environment if it exists." short:"o"`
22-
Detach bool `help:"Run containers in detached mode." short:"d"`
23-
Build bool `help:"Build images before starting containers." short:"b"`
24-
NoCache bool `help:"Do not use cache when building images." short:"c"`
25-
WithConfig string `help:"Path to a custom configuration file. Replaces the default config." type:"existingfile"`
18+
EnvDir string `help:"Directory containing the environment." required:"" default:"./env"`
19+
Name string `help:"Name of the environment to start." required:"" short:"n" default:"default"`
20+
NoConfigure bool `help:"Don't template config files before starting containers"`
21+
Overwrite bool `help:"Overwrite existing environment if it exists." short:"o"`
22+
Detach bool `help:"Run containers in detached mode." short:"d"`
23+
Build bool `help:"Build images before starting containers." short:"b"`
24+
NoCache bool `help:"Do not use cache when building images." short:"c"`
25+
WithConfig string `help:"Path to a custom configuration file. Replaces the default config." type:"existingfile"`
2626
WithDockerCompose string `help:"Path to a custom Docker Compose file. Replaces the default file." type:"existingfile"`
27-
2827
}
2928

3029
func (c *UpCmd) Run() error {

0 commit comments

Comments
 (0)