mirror of
https://github.com/square/certigo.git
synced 2024-04-21 12:32:40 +00:00
Build file used by formula file for homebrew installation. Basically just a copy of similar file from certstrap.
16 lines
297 B
Python
Executable File
16 lines
297 B
Python
Executable File
#!/bin/bash -e
|
|
# Copyright (C) 2016 Square, Inc.
|
|
|
|
ORG_PATH="github.com/square"
|
|
REPO_PATH="${ORG_PATH}/certigo"
|
|
|
|
export GOPATH=${PWD}/gopath
|
|
|
|
rm -f $GOPATH/src/${REPO_PATH}
|
|
mkdir -p $GOPATH/src/${ORG_PATH}
|
|
ln -s ${PWD} $GOPATH/src/${REPO_PATH}
|
|
|
|
eval $(go env)
|
|
|
|
go build -o bin/certigo ${REPO_PATH}
|