mirror of
https://github.com/vxcontrol/external-dns.git
synced 2026-07-21 14:15:24 -04:00
15 lines
244 B
Bash
15 lines
244 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function set_project_vars() {
|
|
if [ -f .build_envs ]; then
|
|
. .build_envs
|
|
fi
|
|
|
|
PACKAGE=./gopath/src/$(<.package)
|
|
PROJECT=$(basename $PACKAGE)
|
|
|
|
export GOPATH=$(pwd)/Godeps/_workspace:$(pwd)/gopath
|
|
}
|