mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-12-22 00:12:41 +00:00
13 lines
211 B
Bash
Executable File
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"
|