This repository has been archived on 2021-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
my-bloody-hetzner-sb-notifier/build_gox.sh
Mahmoud Rahbar Azad 1a9ed2b37a
inlined strcase dependency
cleanup wrong  dependency in go.mod
2018-10-27 00:10:08 +02:00

10 lines
222 B
Bash

VERSION=1.0
GO111MODULE=on
echo "Fetching dependencies"
go get ./...
go get github.com/mitchellh/gox
echo "Building project"
mkdir -p builds
gox -output="builds/hetzner-sb-notifier_{{.OS}}_{{.Arch}}_$VERSION"
echo "Done"