From: Jakob Fahrner <jakob.fahrner@student.tugraz.at>
Date: Sat, 14 Sep 2019 20:58:12 +0000 (+0200)
Subject: Create out dir only if not existing
X-Git-Url: https://git.realraum.at/?a=commitdiff_plain;ds=sidebyside;p=homepage.git

Create out dir only if not existing
---

diff --git a/jekyll-admin_run.sh b/jekyll-admin_run.sh
index 1be29e4..4cc8b5e 100755
--- a/jekyll-admin_run.sh
+++ b/jekyll-admin_run.sh
@@ -2,5 +2,5 @@
 BASE_D=$(realpath "${BASH_SOURCE%/*}/")
 JEKYLL_VERSION=3.8
 
-mkdir "$BASE_D/out"
+mkdir -p "$BASE_D/out"
 exec sudo docker run --name realraum-jekyll --rm -it -p 127.0.0.1:4000:4000 --volume="$BASE_D/vendor/bundle:/usr/local/bundle" -v "$BASE_D/src":/srv/jekyll -v "$BASE_D/out":/srv/out jekyll/jekyll:$JEKYLL_VERSION "$@"