From 2b2d50fe8d2636730c35fc672bbf7ec3153ebb87 Mon Sep 17 00:00:00 2001 From: Ben Parees Date: Wed, 11 Nov 2015 23:05:49 -0500 Subject: [PATCH] readme path and sample are wrong --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49cd5d45f..1b8b4d215 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ Assuming Go and Docker are installed and configured, execute the following comma ``` $ go get github.com/openshift/source-to-image $ cd ${GOPATH}/src/github.com/openshift/source-to-image -$ export PATH=$PATH:${GOPATH}/src/github.com/openshift/source-to-image/_output/local/go/bin/ +$ export PATH=$PATH:${GOPATH}/src/github.com/openshift/source-to-image/_output/local/bin/linux/amd64/ $ hack/build-go.sh ``` @@ -173,7 +173,7 @@ with the following test sources and publicly available images: ``` $ s2i build git://github.com/pmorie/simple-ruby openshift/ruby-20-centos7 test-ruby-app -$ docker run --rm -i -p :9292 -t test-ruby-app +$ docker run --rm -i -p :8080 -t test-ruby-app ``` ```