From ac7dd2982f53de30f428b57edf54c225b4bd91c5 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Tue, 17 Nov 2020 21:29:54 +0100 Subject: Fix inconsistent spacing in bin/setup Signed-off-by: David Mehren --- bin/setup | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/bin/setup b/bin/setup index 0cd46b83..0f1edca0 100755 --- a/bin/setup +++ b/bin/setup @@ -10,8 +10,7 @@ if [ -d .git ]; then cd "$(git rev-parse --show-toplevel)" fi -if ! type yarn > /dev/null -then +if ! type yarn > /dev/null; then cat << EOF FATAL: Yarn could not be found. @@ -23,7 +22,7 @@ EOF fi if version_lt "$(yarn --version)" '1.22.0'; then - cat <