From 7aa0fd83ee0d32189b0e7cfe23c4614d59cc0781 Mon Sep 17 00:00:00 2001 From: Kai Hendry Date: Wed, 4 Sep 2024 19:59:33 +0100 Subject: [PATCH] fix: flag link to current tagged version release --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d5ad611..f48f138 100644 --- a/main.go +++ b/main.go @@ -74,7 +74,7 @@ func main() { fmt.Fprintf(flag.CommandLine.Output(), "Usage of %s:\n", os.Args[0]) fmt.Fprintf(flag.CommandLine.Output(), " %s [options] [git repo path]\n", os.Args[0]) flag.PrintDefaults() - fmt.Fprintf(flag.CommandLine.Output(), "\nhttps://github.com/kaihendry/lesshero/commit/%s\n", version) + fmt.Fprintf(flag.CommandLine.Output(), "\nhttps://github.com/kaihendry/lesshero/releases/tag/%s\n", version) } flag.Parse()