16 lines
166 B
Bash
Executable File
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
|