mirror of https://github.com/dirtbags/moth.git
25 lines
515 B
Bash
Executable File
25 lines
515 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
base=../..
|
|
|
|
VERSION=$(cat $base/CHANGELOG.md | awk -F '[][]' '/^## \[/ {print $2; exit}')
|
|
|
|
(
|
|
zipfile=winmoth.$VERSION.zip
|
|
echo "=== Building $zipfile"
|
|
mkdir -p winmoth winmoth/state winmoth/puzzles winmoth/mothballs
|
|
echo devel > winmoth/state/teamids.txt
|
|
cp moth-devel.bat winmoth
|
|
cp -a $base/theme winmoth
|
|
(
|
|
cd winmoth
|
|
GOOS=windows GOARCH=amd64 go build ../$base/cmd/mothd/...
|
|
)
|
|
zip -r $zipfile winmoth
|
|
|
|
rm -rf winmoth
|
|
)
|