above_the_waters/build.sh

9 lines
172 B
Bash
Raw Normal View History

2020-01-12 21:52:52 +00:00
#!/bin/sh
2020-08-23 15:13:49 +00:00
mkdir -p above-the-waters
2020-01-12 21:52:52 +00:00
cd scenes
for i in *
do
echo "${i%.text}"
2020-08-23 15:13:49 +00:00
python3 ../generate.py 'Above the Waters' "$i" > ../above-the-waters/"${i%.text}.html"
2020-01-12 21:52:52 +00:00
done