theshell.ch/stop.sh
bevilj 09c014f6cb 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
2018-10-31 08:44:21 +00:00

8 lines
159 B
Bash
Executable File

#!/bin/sh
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