vendor.conf: reformat to use columns
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3a31ce267d
commit
55ea3dc9b1
@ -25,7 +25,7 @@ if [[ -z "${VERSION:-}" ]]; then
|
||||
fi
|
||||
|
||||
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/...
|
||||
cd $GOPATH/src/github.com/containerd/cri
|
||||
|
@ -21,7 +21,7 @@
|
||||
#
|
||||
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_CONFIG_DIR=/etc/cni/net.d
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#
|
||||
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
|
||||
cd $GOPATH/src/github.com/opencontainers/runc
|
||||
|
Loading…
Reference in New Issue
Block a user