Skip to content

Commit d005a8d

Browse files
More review tweaks
1 parent df12f68 commit d005a8d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

internal/boxcli/generate.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ func direnvCmd() *cobra.Command {
149149
command.Flags().BoolVarP(
150150
&flags.force, "force", "f", false, "force overwrite existing files")
151151
command.Flags().BoolVarP(
152-
&flags.printEnvrcContent, "print-envrc", "p", false, "output contents of devbox configuration to use in .envrc")
152+
&flags.printEnvrcContent, "print-envrc", "p", false,
153+
"output contents of devbox configuration to use in .envrc")
153154
// this command marks a flag as hidden. Error handling for it is not necessary.
154155
_ = command.Flags().MarkHidden("print-envrc")
155156

@@ -159,8 +160,10 @@ func direnvCmd() *cobra.Command {
159160
// directory or the directory specified by --config). This is useful for users who want to keep
160161
// their .envrc and devbox config files in different locations.
161162
command.Flags().StringVar(
162-
&flags.envrcDir, "envrc-dir", "", "path to directory where the .envrc file should be generated. "+
163-
"If not specified, the .envrc file will be generated in the current working directory.")
163+
&flags.envrcDir, "envrc-dir", "",
164+
"path to directory where the .envrc file should be generated. "+
165+
"If not specified, the .envrc file will be generated in "+
166+
"the current working directory.")
164167

165168
flags.config.register(command)
166169
return command

0 commit comments

Comments
 (0)