From 3790d645d859dd9d222a6a32859e4c77afd7b0b7 Mon Sep 17 00:00:00 2001
From: Jake <j.vondoemming@stud.uni-goettingen.de>
Date: Thu, 4 Aug 2022 16:25:36 +0200
Subject: [PATCH] fixed mathjax not being copied

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index dc784c6..71ecb48 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ build: mathjax
 
 .PHONY: mathjax
 mathjax:
-	[ ! -d output/mathjax ] && cp -vr mathjax/es5 output/mathjax || true
+	[ ! -d output/mathjax ] && mkdir -p output && cp -vr mathjax/es5 output/mathjax || true
 
 .PHONY: devserver
 devserver:
-- 
GitLab