This repository was archived by the owner on Feb 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ func (cmd *TreeCommand) Register(r command.Registerer) {
5050 clause := r .Command ("tree" , "List contents of a directory in a tree-like format." )
5151 clause .Arg ("dir-path" , "The path to to show contents for" ).Required ().PlaceHolder (optionalDirPathPlaceHolder ).SetValue (& cmd .path )
5252
53- clause .Flag ("full-paths" , "Print the full paths of the directories and secrets ." ).Short ('f' ).BoolVar (& cmd .fullPaths )
54- clause .Flag ("no-indentation" , "Print the content without indentation." ).Short ('i' ).BoolVar (& cmd .noIndentation )
55- clause .Flag ("no-report" , "Skip the report at the bottom ." ).BoolVar (& cmd .noReport )
56- clause .Flag ("noreport" , "Skip the report at the bottom." ).BoolVar (& cmd .noReport )
53+ clause .Flag ("full-paths" , "Print the full path of each directory and secret ." ).Short ('f' ).BoolVar (& cmd .fullPaths )
54+ clause .Flag ("no-indentation" , "Don't print indentation lines ." ).Short ('i' ).BoolVar (& cmd .noIndentation )
55+ clause .Flag ("no-report" , "Turn off secret/directory count at end of tree listing ." ).BoolVar (& cmd .noReport )
56+ clause .Flag ("noreport" , "Turn off secret/directory count at end of tree listing." ). Hidden ( ).BoolVar (& cmd .noReport )
5757
5858 command .BindAction (clause , cmd .Run )
5959}
You can’t perform that action at this time.
0 commit comments