Move html to a better location

This commit is contained in:
Austen Adler 2016-08-24 12:30:28 -04:00
parent ad33258eed
commit 1b7a8d0dbd
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

@ -29,13 +29,13 @@ fi
# Run doxygen, redirecting stdout to dev null, and setting stderr to $OUTPUT
if command -v doxygen >/dev/null; then
OUTPUT=$((doxygen "${0:h}/Doxyfile" > /dev/null) 2>&1)
#TODO: We might need this in the future, bur for now, delete html directory
rm -r html || true
# If there is output, something went wrong
if [ ! -z "$OUTPUT" ]; then
printf "$OUTPUT\n" >&2
return 2
fi
#TODO: We might need this in the future, bur for now, delete html directory
rm -r html || true
else
printf "You don't have doxygen installed. Can't check documentation\n" >&2
fi