From f9806effff3d09b28e890627fafb3568f769b149 Mon Sep 17 00:00:00 2001 From: Lei Xue Date: Tue, 23 Jun 2015 11:39:38 +0800 Subject: [PATCH 1/3] make the install steps more clear in README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c4fce54d..be94482f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ ### Building: ```bash -git clone https://github.com/opencontainers/runc +git clone https://github.com/opencontainers/runc $(GOPATH)/github.com/opencontainers/runc +cd $(GOPATH)/github.com/opencontainers/runc/ make sudo make install ``` From 682f398e8a08c3e85a60b328f20898fdf69e6e00 Mon Sep 17 00:00:00 2001 From: Lei Xue Date: Tue, 23 Jun 2015 12:16:51 +0800 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be94482f..986fba41 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ ### Building: ```bash -git clone https://github.com/opencontainers/runc $(GOPATH)/github.com/opencontainers/runc -cd $(GOPATH)/github.com/opencontainers/runc/ +git clone https://github.com/opencontainers/runc $GOPATH/src/github.com/opencontainers/runc +cd $GOPATH/src/github.com/opencontainers/runc/ make sudo make install ``` From f4f6938448f1376507cd95a891d42d2823d48740 Mon Sep 17 00:00:00 2001 From: Lei Xue Date: Thu, 25 Jun 2015 08:04:12 +0800 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 986fba41..12d8d501 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ### Building: ```bash -git clone https://github.com/opencontainers/runc $GOPATH/src/github.com/opencontainers/runc +go get -d github.com/opencontainers/runc cd $GOPATH/src/github.com/opencontainers/runc/ make sudo make install