From aed89335d91252bd3ff4097714abf76016d38f45 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Wed, 27 Mar 2019 19:22:13 +0800 Subject: [PATCH] Make 'missing jekyll' a warning instead --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4994a9918..e2ad817c4 100644 --- a/Makefile +++ b/Makefile @@ -26,11 +26,10 @@ ensure-bin: echo "---"; \ exit 1; \ fi - @if ! bundle show jekyll &>/dev/null; then \ + @if ! which jekyll &>/dev/null; then \ echo "---"; \ - echo "Error: Jekyll not found, you may need to run '[docker-compose run --rm web] bundle install'."; \ + echo "Warning: Jekyll not found, you may need to run '[docker-compose run --rm web] bundle install'."; \ echo "---"; \ - exit 1; \ fi dev: ensure-bin ## Starts development server