aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 4 insertions, 4 deletions
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)