Skip to content

Commit d53f98e

Browse files
committed
feat: support --version
Signed-off-by: Brian McGee <[email protected]>
1 parent d4ab015 commit d53f98e

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

build/build.go

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package build
2+
3+
var (
4+
Name = "treefmt"
5+
Version = "v0.0.1+dev"
6+
)

cli/cli.go

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ type Format struct {
1818
TreeRoot string `type:"existingdir" default:"."`
1919
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'."`
2020
Verbosity int `name:"verbose" short:"v" type:"counter" default:"0" env:"LOG_LEVEL" help:"Set the verbosity of logs e.g. -vv."`
21+
Version bool `name:"version" short:"V" help:"Print version"`
2122

2223
Paths []string `name:"paths" arg:"" type:"path" optional:"" help:"Paths to format. Defaults to formatting the whole tree."`
2324
Stdin bool `help:"Format the context passed in via stdin"`

main.go

+15
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
package main
22

33
import (
4+
"fmt"
5+
"os"
6+
7+
"git.numtide.com/numtide/treefmt/build"
48
"git.numtide.com/numtide/treefmt/cli"
59
"github.com/alecthomas/kong"
610
)
711

812
func main() {
13+
// This is to maintain compatibility with 1.0.0 which allows specifying the version with a `treefmt --version` flag
14+
// on the 'default' command. With Kong it would be better to have `treefmt version` so it would be treated as a
15+
// separate command. As it is, we would need to weaken some of the `existingdir` and `existingfile` checks kong is
16+
// doing for us in the default format command.
17+
for _, arg := range os.Args {
18+
if arg == "--version" || arg == "-V" {
19+
fmt.Printf("%s %s\n", build.Name, build.Version)
20+
return
21+
}
22+
}
23+
924
ctx := kong.Parse(&cli.Cli)
1025
ctx.FatalIfErrorf(ctx.Run())
1126
}

0 commit comments

Comments
 (0)