added help2man check in gen-manpages.sh

This commit is contained in:
jahway603
2021-03-01 03:07:03 -05:00
parent dbef6b34c8
commit 4ca41a1357

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# Copyright (c) 2016-2020 The Hush developers # Copyright (c) 2016-2021 The Hush developers
# Released under the GPLv3 # Released under the GPLv3
TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)} TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)}
@@ -12,6 +12,15 @@ HUSHTX=${HUSHTX:-$SRCDIR/hush-tx}
[ ! -x $HUSHD ] && echo "$HUSHD not found or not executable." && exit 1 [ ! -x $HUSHD ] && echo "$HUSHD not found or not executable." && exit 1
# Check if help2man is installed
# If not then display error to user and exit
if ! command -v help2man &> /dev/null
then
echo "help2man could not be found"
echo "Please install from your Linux package manager and try again"
exit
fi
# use this if hushd is not running # use this if hushd is not running
#HUSHVER="v3.6.2" #HUSHVER="v3.6.2"
HUSHVER=$(./src/hushd --version|head -n1|cut -d' ' -f4|cut -d- -f1) HUSHVER=$(./src/hushd --version|head -n1|cut -d' ' -f4|cut -d- -f1)