
Path rewriting causes too many problems when vendoring vendored code. When CNI code is vendored into rkt, godep has problems code already vendored by CNI.
28 lines
572 B
Bash
Executable File
28 lines
572 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
ORG_PATH="github.com/appc"
|
|
REPO_PATH="${ORG_PATH}/cni"
|
|
|
|
if [ ! -h gopath/src/${REPO_PATH} ]; then
|
|
mkdir -p gopath/src/${ORG_PATH}
|
|
ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
|
|
fi
|
|
|
|
export GOBIN=${PWD}/bin
|
|
export GOPATH=${PWD}/gopath:$(pwd)/Godeps/_workspace
|
|
|
|
echo "Building plugins"
|
|
|
|
PLUGINS="plugins/meta/* plugins/main/* plugins/ipam/*"
|
|
for d in $PLUGINS; do
|
|
if [ -d $d ]; then
|
|
plugin=$(basename $d)
|
|
echo " " $plugin
|
|
go install ${REPO_PATH}/$d
|
|
fi
|
|
done
|
|
|
|
if [ ! -h $GOBIN/host-local-ptp ]; then
|
|
ln -s host-local $GOBIN/host-local-ptp
|
|
fi
|