mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
15 lines
250 B
Bash
Executable File
15 lines
250 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for script in scripts/* ; do
|
|
echo "Generating output for $script ..."
|
|
output="${script##*/}"
|
|
"$script" > "src/generated/${output%.*}.html"
|
|
done
|
|
|
|
python3 render_examples > src/content/addons-examples.md
|
|
|
|
cd src
|
|
hugo
|