From bd7d34c226caac16030ff3603822218f6304fdb0 Mon Sep 17 00:00:00 2001 From: Christian Barrow Date: Thu, 10 Sep 2020 12:33:39 -0500 Subject: [PATCH] Update secrets-client-component.md There might be a possible typo in the section about downloading the secrets cli ``` export PATH=~/bini:$PATH ``` didn't work on my machine. ``` export PATH=~/bin:$PATH ``` Did work. Before: ``` mkdir ~/bin cd ~/bin curl -o secrets http://repo1.maven.org/maven2/com/oneops/secrets-cli/1.0.3/secrets-cli-1.0.3-executable.jar chmod a+x secrets export PATH=~/bini:$PATH ``` After: ``` mkdir ~/bin cd ~/bin curl -o secrets http://repo1.maven.org/maven2/com/oneops/secrets-cli/1.0.3/secrets-cli-1.0.3-executable.jar chmod a+x secrets export PATH=~/bin:$PATH ``` --- user/design/secrets-client-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/design/secrets-client-component.md b/user/design/secrets-client-component.md index 1aa9e7b..03a6ee8 100644 --- a/user/design/secrets-client-component.md +++ b/user/design/secrets-client-component.md @@ -66,7 +66,7 @@ mkdir ~/bin cd ~/bin curl -o secrets http://repo1.maven.org/maven2/com/oneops/secrets-cli/1.0.3/secrets-cli-1.0.3-executable.jar chmod a+x secrets -export PATH=~/bini:$PATH +export PATH=~/bin:$PATH ``` Now you can run the application using the command `secrets info` as a first