2024-03-09 02:25:48 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2024-03-10 00:20:52 -05:00
|
|
|
git submodule update --init --depth 1
|
2024-03-09 02:25:48 -05:00
|
|
|
|
2024-03-09 23:29:25 -05:00
|
|
|
mkdir -p dist
|
2024-03-09 02:25:48 -05:00
|
|
|
pwd=$PWD
|
|
|
|
|
|
|
|
for source in "html" "gemini" "gopher"; do
|
|
|
|
cd $source
|
|
|
|
echo "building $source..."
|
|
|
|
./build.sh
|
|
|
|
|
|
|
|
cd $pwd
|
|
|
|
done
|