From 07fc7aa077e454a5a427a819d754ec65bf330b32 Mon Sep 17 00:00:00 2001 From: Cory LaNou Date: Thu, 23 Aug 2018 08:16:45 -0400 Subject: [PATCH] Missing step to create the example directory The instructions to create the `example-inc` project are missing a step to create the directory first. --- doc/user-guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/user-guide.md b/doc/user-guide.md index 2ec2c36b1a5..6ed8357989e 100644 --- a/doc/user-guide.md +++ b/doc/user-guide.md @@ -36,6 +36,7 @@ This installs the CLI binary `operator-sdk` at `$GOPATH/bin`. Use the CLI to create a new memcached-operator project: ```sh +$ mkdir -p $GOPATH/src/github.com/example-inc/ $ cd $GOPATH/src/github.com/example-inc/ $ operator-sdk new memcached-operator --api-version=cache.example.com/v1alpha1 --kind=Memcached $ cd memcached-operator