
Remove the possibility of having any bad or old manpages in releases while still being able to cache for quick development tarballs.
8 lines
72 B
Bash
Executable File
8 lines
72 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
rm man/*.1 man/*.3
|
|
./autogen.sh
|
|
./configure
|
|
make dist
|