diff options
Diffstat (limited to 'compile.sh')
-rwxr-xr-x | compile.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..46ae743 --- /dev/null +++ b/compile.sh @@ -0,0 +1,15 @@ +#!/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 |