From d9392f20b87351ad1bfe1fa9e778311cca0e934a Mon Sep 17 00:00:00 2001 From: Ian Serlin Date: Sat, 26 May 2018 15:32:58 -0400 Subject: [PATCH] Add missing `cd` command to dev guide section `### Building k8s manifests file` is missing a `cd` before the `make all-yaml` command. --- docs/dev-guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/dev-guide.md b/docs/dev-guide.md index 23d0ad1a0..fcac5ee36 100644 --- a/docs/dev-guide.md +++ b/docs/dev-guide.md @@ -96,6 +96,7 @@ To regenerate the most updated k8s manifests file, run: cd $KUBELESS_WORKING_DIR export KUBECFG_JPATH=$PWD/ksonnet-lib git clone --depth=1 https://github.com/ksonnet/ksonnet-lib.git +cd $KUBELESS_WORKING_DIR/kubeless make all-yaml ```