From 41f860a791c9869ce68d55aeb97cc07d7f47c09c Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sun, 3 Sep 2023 14:34:32 +0200 Subject: ref: Move to pflag Don't like default single `-` param. --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 3488c32..abeb557 100644 --- a/main.go +++ b/main.go @@ -5,13 +5,13 @@ import ( "bufio" "compress/gzip" "errors" - "flag" "io" "net/http" "os" "git.sr.ht/~gabrielgio/apkdoc/parser" "git.sr.ht/~gabrielgio/apkdoc/templates" + flag "github.com/spf13/pflag" ) func fechIndex(url string) (io.ReadCloser, error) { @@ -28,9 +28,9 @@ func fechIndex(url string) (io.ReadCloser, error) { } func main() { - url := flag.String("url", "", "Url to the APKINDEX.tar.gz") - output := flag.String("output", "index.md", "Output path") - repositoryFormat := flag.String("repository-format", "https://git.sr.ht/~gabrielgio/apkbuilds/tree/%s/item/apks/%s", "Template to build repository link") + url := flag.StringP("url", "u", "", "Url to the APKINDEX.tar.gz") + output := flag.StringP("output", "o", "index.md", "Output path") + repositoryFormat := flag.StringP("repository-format", "f", "https://git.sr.ht/~gabrielgio/apkbuilds/tree/%s/item/apks/%s", "Template to build repository link") flag.Parse() tarStream, err := fechIndex(*url) -- cgit v1.2.3