From 90e3f41e77bfcf6488bbe444978aeb4b92110536 Mon Sep 17 00:00:00 2001
From: Jakob Fahrner <jakob.fahrner@student.tugraz.at>
Date: Sat, 14 Sep 2019 22:58:12 +0200
Subject: [PATCH] Create out dir only if not existing

---
 jekyll-admin_run.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 "$@"
-- 
1.7.10.4