Skip to content

Commit

Permalink
Merge pull request #521 from Random-Liu/fix-install-deps
Browse files Browse the repository at this point in the history
Fix install-deps
  • Loading branch information
Random-Liu committed Jan 4, 2018
2 parents b3a4141 + d361ee5 commit ca2c92e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/install-deps.sh
Expand Up @@ -141,7 +141,8 @@ ${sudo} make install -e DESTDIR=${CONTAINERD_DIR}
checkout_repo ${CRITOOL_PKG} ${CRITOOL_VERSION}
cd ${GOPATH}/src/${CRITOOL_PKG}
make
${sudo} make install -e BINDIR=${CRICTL_DIR}
# make install critools require GOPATH to be set correctly.
${sudo} make install -e BINDIR=${CRICTL_DIR} GOPATH=${GOPATH}
${sudo} mkdir -p ${CRICTL_CONFIG_DIR}
${sudo} bash -c 'cat >'${CRICTL_CONFIG_DIR}'/crictl.yaml <<EOF
runtime-endpoint: /var/run/cri-containerd.sock
Expand Down

0 comments on commit ca2c92e

Please sign in to comment.