mirror of
https://github.com/onyx-and-iris/vbantxt.git
synced 2026-04-29 20:33:32 +00:00
add Taskfile.man.yml include it in the main Taskfile add man flag to Flags section in README
18 lines
287 B
YAML
18 lines
287 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
default:
|
|
desc: View man page
|
|
cmds:
|
|
- task: view
|
|
|
|
view:
|
|
desc: View man page
|
|
cmds:
|
|
- go run ./cmd/{{.PROGRAM}} --man | man -l -
|
|
|
|
generate:
|
|
desc: Generate man page
|
|
cmds:
|
|
- go run ./cmd/{{.PROGRAM}} --man > {{.PROGRAM}}.1
|