#!/bin/sh set -e mkdir -p dist pwd=$PWD for source in "html" "gemini" "gopher"; do cd $source echo "building $source..." ./build.sh cd $pwd done