Skip to content

Commit bc89625

Browse files
committed
fix TreeRootFile type
kong resolves path types to absolute paths
1 parent bc928bd commit bc89625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Format struct {
1717
FailOnChange bool `help:"Exit with error if any changes were made. Useful for CI."`
1818
Formatters []string `short:"f" help:"Specify formatters to apply. Defaults to all formatters."`
1919
TreeRoot string `type:"existingdir" xor:"tree-root" help:"The root directory from which treefmt will start walking the filesystem (defaults to the directory containing the config file)."`
20-
TreeRootFile string `type:"path" xor:"tree-root" help:"File to search for to find the project root (if --tree-root is not passed)."`
20+
TreeRootFile string `type:"string" xor:"tree-root" help:"File to search for to find the project root (if --tree-root is not passed)."`
2121
Walk walk.Type `enum:"auto,git,filesystem" default:"auto" help:"The method used to traverse the files within --tree-root. Currently supports 'auto', 'git' or 'filesystem'."`
2222
Verbosity int `name:"verbose" short:"v" type:"counter" default:"0" env:"LOG_LEVEL" help:"Set the verbosity of logs e.g. -vv."`
2323
Version bool `name:"version" short:"V" help:"Print version."`

0 commit comments

Comments
 (0)