1
0
mirror of https://github.com/zplug/zplug synced 2025-08-30 17:50:43 +02:00
zplug/misc/dev_tools/make_manpage.sh
Naoki Mizuno e01833c95e Change directory structure
lib/     -> base/
src/     -> misc/
src/ext/ -> base/sources/
2016-04-13 01:25:51 -04:00

10 lines
169 B
Bash

#!/bin/bash
if [[ -f $ZPLUG_HOME/doc/zplug.txt ]]; then
a2x -f manpage $ZPLUG_HOME/doc/zplug.txt
exit $?
else
echo "zplug.txt: not found" >&2
exit 1
fi