diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/taler-terms-generator.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/taler-terms-generator.in b/contrib/taler-terms-generator.in index 6b466413..1bf030c1 100755 --- a/contrib/taler-terms-generator.in +++ b/contrib/taler-terms-generator.in @@ -143,6 +143,12 @@ while getopts ':a:C:hi:l:o:p:t:' OPTION; do esac done +if ! which sphinx-build > /dev/null +then + echo "Command 'sphinx-build' not found, but required. Please install sphinx." + exit 1 +fi + BUILDDIR=$(mktemp -d /tmp/taler-terms-XXXXXX) if [ ! -f "${VERSION}.rst" ] then |