pelican-mg/run.sh
2019-05-27 23:09:12 -05:00

13 lines
211 B
Bash
Executable File

#!/bin/bash
# USAGE: ./run.sh ( install )
set -o pipefail -o errexit -o nounset -o xtrace
install () {
pip install beautifulsoup4 markdown pelican pillow
./gen_statics_bundles.py || true
}
eval "$1"