@@ -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