New build script (old deps were wonky)
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#! /usr/bin/bash
|
||||
|
||||
if mkdocs=$(command -v mkdocs)
|
||||
then
|
||||
echo "mkdocs found at $mkdocs"
|
||||
else
|
||||
echo "Could not find a mkdocs installation!"
|
||||
echo "mkdocs must be installed and available in \$PATH to proceed."
|
||||
exit 95
|
||||
fi
|
||||
|
||||
rm docs/*.md
|
||||
cp ../docs/*.md docs/
|
||||
cp ../CHANGELOG.md docs/
|
||||
|
||||
mkdocs build
|
||||
Reference in New Issue
Block a user