From 4f582027f398e595ff634818e23549ebe7111a99 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Tue, 13 Oct 2020 14:18:12 +0100 Subject: [PATCH] Fix typo in pre-req task --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 01806ce..626efd3 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ pre-reqs: ## Install all required binaries. brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null || brew install homebrew/cask-fonts/font-open-dyslexic-nerd-font; \ which fzf > /dev/null || brew install fzf; \ which bat > /dev/null || brew install bat; \ - which curlie > /dev/null | brew install rs/tap/curlie; \ + which curlie > /dev/null || brew install rs/tap/curlie; \ which exa > /dev/null || brew install exa; \ which kubectl > /dev/null || brew install kubectl; \ which tkn > /dev/null || brew install tektoncd/tools/tektoncd-cli; \