summaryrefslogtreecommitdiff
path: root/compile.sh
blob: 31addf83bb672b383a5f39faa39bf764d3bd793c (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 --recursive

mkdir -p dist
pwd=$PWD

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

    cd $pwd
done