16 lines
166 B
Bash
16 lines
166 B
Bash
|
#!/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
|