@@ -149,7 +149,8 @@ func direnvCmd() *cobra.Command {
149
149
command .Flags ().BoolVarP (
150
150
& flags .force , "force" , "f" , false , "force overwrite existing files" )
151
151
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" )
153
154
// this command marks a flag as hidden. Error handling for it is not necessary.
154
155
_ = command .Flags ().MarkHidden ("print-envrc" )
155
156
@@ -159,8 +160,10 @@ func direnvCmd() *cobra.Command {
159
160
// directory or the directory specified by --config). This is useful for users who want to keep
160
161
// their .envrc and devbox config files in different locations.
161
162
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." )
164
167
165
168
flags .config .register (command )
166
169
return command
0 commit comments