From b8d2233656b85e59cb2a51b7ad15d3254bfca11a Mon Sep 17 00:00:00 2001 From: Yaron Idan Date: Fri, 2 Feb 2018 14:48:15 +0200 Subject: [PATCH] Install cfssl with brew instead of downloading it When trying the current suggestion for installing cfssl on osx high sierra I got errors that lead me to this issue - https://github.com/cloudflare/cfssl/issues/813, which taught me cfssl has a brew package. I feel it's more concise to use brew for this operation + it let's users avoid the error I got. WDYT? --- docs/02-client-tools.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/docs/02-client-tools.md b/docs/02-client-tools.md index e6b728d..1845084 100644 --- a/docs/02-client-tools.md +++ b/docs/02-client-tools.md @@ -12,16 +12,7 @@ Download and install `cfssl` and `cfssljson` from the [cfssl repository](https:/ ### OS X ``` -curl -o cfssl https://pkg.cfssl.org/R1.2/cfssl_darwin-amd64 -curl -o cfssljson https://pkg.cfssl.org/R1.2/cfssljson_darwin-amd64 -``` - -``` -chmod +x cfssl cfssljson -``` - -``` -sudo mv cfssl cfssljson /usr/local/bin/ +brew install cfssl ``` ### Linux