mirror of
https://github.com/zplug/zplug
synced 2025-08-30 17:50:43 +02:00
10 lines
169 B
Bash
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
|