12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
#!/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
|
||
|
)
|