14 lines
188 B
Bash
14 lines
188 B
Bash
|
#!/bin/sh
|
||
|
set -ex
|
||
|
|
||
|
rm -rf out/
|
||
|
|
||
|
python 0_get_recipes.py
|
||
|
python 1_clean_json.py
|
||
|
python 2_to_markdown.py
|
||
|
python 3_to_mediawiki.py
|
||
|
|
||
|
if [[ "$1" = "post" ]]; then
|
||
|
python 4_post_to_wiki.py
|
||
|
fi
|