Skip to content

Commit

Permalink
Fixing release
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Jan 2, 2025
1 parent 35b5655 commit b71960c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,18 @@ import (
_ "github.com/xo/ox/color"
)

var (
name = "fv"
version = "0.0.0-dev"
)

func main() {
ox.DefaultVersionString = version
args := &Args{}
ox.RunContext(
context.Background(),
ox.Exec(run(os.Stdout, args)),
ox.Usage("fv", "a command-line font view using terminal graphics"),
ox.Usage(name, "a command-line font view using terminal graphics"),
ox.Defaults(),
ox.From(args),
)
Expand Down

0 comments on commit b71960c

Please sign in to comment.