From 2dfd5207e4095302f527f1dbfc69b9e5c6fe8d6a Mon Sep 17 00:00:00 2001 From: R Max Espinoza Date: Tue, 19 May 2020 12:46:18 +0200 Subject: [PATCH] fix: add spacing around pipe operator This fixes the experience for zsh users where copy pasting `foo| bar` escapes the pipe as `foo\| bar`. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06c9285..4e49864 100644 --- a/README.md +++ b/README.md @@ -71,13 +71,13 @@ Here is the recommended way to install `codeowners-validator`: ```bash # binary installed into ./bin/ -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh| sh -s v0.4.0 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.4.0 # binary installed into $(go env GOPATH)/bin/codeowners-validator -curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v0.4.0 +curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v0.4.0 # In alpine linux (as it does not come with curl by default) -wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh| sh -s v0.4.0 +wget -O - -q https://raw.githubusercontent.com/mszostok/codeowners-validator/master/install.sh | sh -s v0.4.0 # Print version. Add `--short` to print just the version number. codeowners-validator -v