1
Fork 0
theorangeone.net-legacy/scripts/generate-site.sh

14 lines
200 B
Bash
Executable file

#!/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."