mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-03 02:43:47 +03:00
7 lines
127 B
Bash
7 lines
127 B
Bash
|
#!/bin/sh
|
||
|
# This script generates man pages.
|
||
|
set -e
|
||
|
rm -rf manpages
|
||
|
mkdir manpages
|
||
|
go run . man | gzip -c -9 >manpages/sq.1.gz
|