From dd14013d997db556fc0570a0ff11b4ac2c62da25 Mon Sep 17 00:00:00 2001
From: Angus Lees <gus@inodes.org>
Date: Wed, 28 Jun 2017 12:05:47 +1000
Subject: [PATCH] Simply quickstart further

Remove poor attempt at setup step entirely.  This makes the actual
quickstart content more obvious ... and anyone who _actually_ wants to
run it will already know how to checkout a git repo.
---
 README.md | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 40073234..a7459007 100644
--- a/README.md
+++ b/README.md
@@ -37,13 +37,9 @@ avoid an immediate `Killed: 9`.
 ## Quickstart
 
 ```console
-# Fetch guestbook example
-% git clone https://github.com/ksonnet/kubecfg.git
-% cd kubecfg
-
-# Set kubecfg/jsonnet library search path to <kubecfg.git>/lib.
+# Include <kubecfg.git>/lib in kubecfg/jsonnet library search path.
 # Can also use explicit `-J` args everywhere.
-% export KUBECFG_JPATH=$PWD/lib
+% export KUBECFG_JPATH=/path/to/kubecfg/lib
 
 # Show generated YAML
 % kubecfg show -o yaml examples/guestbook.jsonnet
@@ -61,7 +57,6 @@ avoid an immediate `Killed: 9`.
 
 # Clean up after demo
 % kubecfg delete examples/guestbook.jsonnet
-% mv examples/guestbook.jsonnet.bak examples/guestbook.jsonnet
 ```
 
 ## Features
-- 
GitLab