mirror of
https://github.com/josmo/drone-rancher.git
synced 2026-06-16 14:50:35 +08:00
11 lines
172 B
Bash
11 lines
172 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
set_project_vars()
|
|
{
|
|
PACKAGE=./gopath/src/$(<.package)
|
|
PROJECT=$(basename $PACKAGE)
|
|
|
|
export GOPATH=$(pwd)/Godeps/_workspace:$(pwd)/gopath
|
|
}
|