1
1
mirror of https://github.com/varkor/quiver.git synced 2024-08-16 01:00:46 +03:00

Update Makefile error message

This commit is contained in:
varkor 2021-11-20 21:26:13 +00:00
parent 9c1dbdb7a3
commit 2c62d40b82

View File

@ -41,7 +41,8 @@ gh-pages:
# instead copy it from an existing directory, typically the one in `src/KaTeX`, which must be
# stored in the `$KATEX` environment variable.
if [ ! -d "$$KATEX" ]; then
exit "KATEX must be set to a directory."
echo "KATEX must be set to a directory."
exit 1
fi
# Store the name of the current branch, to return to it after completing this process.
CURRENT=$$(git rev-parse --abbrev-ref HEAD)