1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/scripts/generate-site.sh

15 lines
203 B
Bash
Raw Normal View History

2016-05-15 20:57:03 +01:00
#!/usr/bin/env bash
set -e
echo "> Creating Site..."
# Build the static data
echo ">> Building static data..."
npm run build $@
echo ">> Compiling site pages..."
pelican -v
echo "> Build complete."