diff options
| author | Shulhan <ms@kilabit.info> | 2020-02-14 11:58:37 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2020-02-14 11:58:37 +0700 |
| commit | 65eae15930afa51ed233f4b1e41ef241a845cc58 (patch) | |
| tree | be15e2d1f267d1032a633d6e736e4d907ced2bc0 | |
| parent | 175162e4ed90a0bd24f9075d0769fd128d3ff69f (diff) | |
| download | ciigo-65eae15930afa51ed233f4b1e41ef241a845cc58.tar.xz | |
cmd/ciigo: remove redundant help flags
| -rw-r--r-- | cmd/ciigo/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/ciigo/main.go b/cmd/ciigo/main.go index 9427be2..59fc6c6 100644 --- a/cmd/ciigo/main.go +++ b/cmd/ciigo/main.go @@ -43,8 +43,8 @@ import ( ) func main() { - isHelp := flag.Bool("h", false, "print help") - isHelp = flag.Bool("help", false, "print help") + isHelp := flag.Bool("help", false, "print help") + htmlTemplate := flag.String("template", "templates/html.tmpl", "path to HTML template") outputFile := flag.String("out", "ciigo_static.go", |
