10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
ORG_PATH="github.com/coreos"
|
|
REPO_PATH="${ORG_PATH}/coreos-cloudinit"
|
|
|
|
export GOBIN=${PWD}/bin
|
|
export GOPATH=${PWD}
|
|
|
|
go build -o bin/coreos-cloudinit ${REPO_PATH}
|