tilde.club/compile.sh
Elizabeth Hunt 23bffaa331
All checks were successful
continuous-integration/drone Build is passing
init
2024-03-09 00:56:16 -07:00

16 lines
166 B
Bash
Executable File

#!/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