vendor.conf: reformat to use columns

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-11-28 11:59:23 +01:00
parent 3a31ce267d
commit 55ea3dc9b1
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
4 changed files with 88 additions and 88 deletions

View File

@ -25,7 +25,7 @@ if [[ -z "${VERSION:-}" ]]; then
fi fi
ROOT=${GOPATH}/src/github.com/containerd/containerd ROOT=${GOPATH}/src/github.com/containerd/containerd
CRI_COMMIT=$(grep github.com/containerd/cri ${ROOT}/vendor.conf | cut -d " " -f 2) CRI_COMMIT=$(grep github.com/containerd/cri ${ROOT}/vendor.conf | awk '{print $2}')
go get -d github.com/containerd/cri/... go get -d github.com/containerd/cri/...
cd $GOPATH/src/github.com/containerd/cri cd $GOPATH/src/github.com/containerd/cri

View File

@ -21,7 +21,7 @@
# #
set -eu -o pipefail set -eu -o pipefail
CNI_COMMIT=$(grep containernetworking/plugins ${GOPATH}/src/github.com/containerd/containerd/vendor.conf | cut -d " " -f 2) CNI_COMMIT=$(grep containernetworking/plugins ${GOPATH}/src/github.com/containerd/containerd/vendor.conf | awk '{print $2}')
CNI_DIR=/opt/cni CNI_DIR=/opt/cni
CNI_CONFIG_DIR=/etc/cni/net.d CNI_CONFIG_DIR=/etc/cni/net.d

View File

@ -21,7 +21,7 @@
# #
set -eu -o pipefail set -eu -o pipefail
RUNC_COMMIT=$(grep opencontainers/runc ${GOPATH}/src/github.com/containerd/containerd/vendor.conf | cut -d " " -f 2) RUNC_COMMIT=$(grep opencontainers/runc ${GOPATH}/src/github.com/containerd/containerd/vendor.conf | awk '{print $2}')
go get -d github.com/opencontainers/runc go get -d github.com/opencontainers/runc
cd $GOPATH/src/github.com/opencontainers/runc cd $GOPATH/src/github.com/opencontainers/runc