From 65fe33a60899723f4aa7990da4f902ab755f0770 Mon Sep 17 00:00:00 2001 From: Shivam Sandbhor Date: Sun, 19 Sep 2021 14:25:28 +0530 Subject: [PATCH] Add instruction to change directory to cloned repo while building. (#1430) Signed-off-by: Shivam Sandbhor --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9b1c049..ee469ade 100644 --- a/README.md +++ b/README.md @@ -86,15 +86,19 @@ __Steps:__ ```console $ git clone https://github.com/kubernetes/kompose.git $GOPATH/src/github.com/kubernetes/kompose ``` -2. Build with `make` +2. Change directory to the cloned repo. +```console +cd $GOPATH/src/github.com/kubernetes/kompose +``` +3. Build with `make` ```console $ make bin ``` -3. Or build with `go` +4. Or build with `go` ```console $ go build -o kompose main.go ``` -4. Test your changes +5. Test your changes ```console $ make test ```