summaryrefslogtreecommitdiff
path: root/compile.sh
blob: bd47c7b72af3e335ad8d6651c866f45410a6f9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

git submodule update --init --depth 1

mkdir -p dist
pwd=$PWD

for source in "html" "gemini" "gopher"; do
    cd $source
    echo "building $source..."
    ./build.sh

    cd $pwd
done