mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-23 19:33:22 +03:00
d9693bde17
* manpage support * Polish up man work * Set DisableAutoGenTag=true for all commands * Set DisableAutoGenTag=true for root cmd * CHANGELOG
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
# This script generates man pages.
|
|
set -e
|
|
rm -rf manpages
|
|
mkdir manpages
|
|
go run . man | gzip -c -9 >manpages/sq.1.gz
|