From 09c014f6cbd4a88def74b38f0f5bc4f1df066d36 Mon Sep 17 00:00:00 2001 From: bevilj Date: Wed, 31 Oct 2018 08:44:21 +0000 Subject: [PATCH] scripts: add warning to stop.sh In case jekyll is not installed git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@7 a672b425-5310-4d7a-af5c-997e18724b81 --- stop.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stop.sh b/stop.sh index 4fe7d05..c40caae 100755 --- a/stop.sh +++ b/stop.sh @@ -2,4 +2,6 @@ if which jekyll 2>/dev/null 1>/dev/null; then pkill -f jekyll +else + echo "Jekyll not found, please install it by running the build.sh script" fi