From e2b7f648f454e4a903edb4decacf0da7420cb23d Mon Sep 17 00:00:00 2001 From: "Arnaud Porterie (icecrime)" Date: Tue, 14 Jun 2016 21:10:38 -0700 Subject: [PATCH] Use runc from crosbymichael's fork Signed-off-by: Arnaud Porterie (icecrime) --- hack/make/build-deb | 2 +- hack/make/build-rpm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/make/build-deb b/hack/make/build-deb index 2aed66fcb6..5b586d0b6b 100644 --- a/hack/make/build-deb +++ b/hack/make/build-deb @@ -73,7 +73,7 @@ set -e # add runc and containerd compile and install cat >> "$DEST/$version/Dockerfile.build" <<-EOF # Install runc - RUN git clone https://github.com/opencontainers/runc.git "/go/src/github.com/opencontainers/runc" \ + RUN git clone https://github.com/crosbymichael/runc.git "/go/src/github.com/opencontainers/runc" \ && cd "/go/src/github.com/opencontainers/runc" \ && git checkout -q "\$RUNC_COMMIT" RUN set -x && export GOPATH="/go" && cd "/go/src/github.com/opencontainers/runc" \ diff --git a/hack/make/build-rpm b/hack/make/build-rpm index 3a82a3827c..d70cb705df 100644 --- a/hack/make/build-rpm +++ b/hack/make/build-rpm @@ -100,7 +100,7 @@ set -e # add runc and containerd compile and install cat >> "$DEST/$version/Dockerfile.build" <<-EOF # Install runc - RUN git clone https://github.com/opencontainers/runc.git "/go/src/github.com/opencontainers/runc" \ + RUN git clone https://github.com/crosbymichael/runc.git "/go/src/github.com/opencontainers/runc" \ && cd "/go/src/github.com/opencontainers/runc" \ && git checkout -q "\$RUNC_COMMIT" RUN set -x && export GOPATH="/go" && cd "/go/src/github.com/opencontainers/runc" \