#!/bin/bash
set -eo pipefail
echo "Installing Mage..."
go get -u -d github.com/magefile/mage
(
cd $GOPATH/src/github.com/magefile/mage
go run bootstrap.go
)