From 070b95bfc76925acdf8907567907ed2e62e8b001 Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Fri, 18 Nov 2016 09:21:28 +0100 Subject: [PATCH] Fix quoting of $PATH in instructions. --- docs/devel/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/devel/testing.md b/docs/devel/testing.md index 09293f001c5..45848f3bd55 100644 --- a/docs/devel/testing.md +++ b/docs/devel/testing.md @@ -177,12 +177,12 @@ includes a script to help install etcd on your machine. # Option a) install inside kubernetes root hack/install-etcd.sh # Installs in ./third_party/etcd -echo export PATH="$PATH:$(pwd)/third_party/etcd" >> ~/.profile # Add to PATH +echo export PATH="\$PATH:$(pwd)/third_party/etcd" >> ~/.profile # Add to PATH # Option b) install manually grep -E "image.*etcd" cluster/saltbase/etcd/etcd.manifest # Find version # Install that version using yum/apt-get/etc -echo export PATH="$PATH:" >> ~/.profile # Add to PATH +echo export PATH="\$PATH:" >> ~/.profile # Add to PATH ``` ### Etcd test data