Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1180 from Random-Liu/fix-version
Fix runc and critools version in release.
  • Loading branch information
Random-Liu committed Jun 21, 2019
2 parents 806c264 + 6afd137 commit eaf792e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/install/install-critools.sh
Expand Up @@ -29,7 +29,7 @@ GOPATH=${TMPGOPATH}
#Install crictl
checkout_repo ${CRITOOL_PKG} ${CRITOOL_VERSION} ${CRITOOL_REPO}
cd ${GOPATH}/src/${CRITOOL_PKG}
make
make VERSION=${CRITOOL_VERSION}
${SUDO} make install -e BINDIR=${CRITOOL_DIR} GOPATH=${GOPATH}
${SUDO} mkdir -p ${CRICTL_CONFIG_DIR}
${SUDO} bash -c 'cat >'${CRICTL_CONFIG_DIR}'/crictl.yaml <<EOF
Expand Down
2 changes: 1 addition & 1 deletion hack/install/install-runc.sh
Expand Up @@ -30,7 +30,7 @@ GOPATH=${TMPGOPATH}
from-vendor RUNC github.com/opencontainers/runc
checkout_repo ${RUNC_PKG} ${RUNC_VERSION} ${RUNC_REPO}
cd ${GOPATH}/src/${RUNC_PKG}
make static BUILDTAGS="$BUILDTAGS"
make static BUILDTAGS="$BUILDTAGS" VERSION=${RUNC_VERSION}
${SUDO} make install -e DESTDIR=${RUNC_DIR}

# Clean the tmp GOPATH dir. Use sudo because runc build generates
Expand Down

0 comments on commit eaf792e

Please sign in to comment.