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