From 9e0ec5ff0f88e768bfd12249bc939e3fb9537229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Tue, 28 Apr 2020 19:19:40 +0200 Subject: [PATCH] Ensure that the css directory exists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It isn’t part of the repository, so the Makefile should not rely on it being present. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 2c37075..5e5cce3 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ all: build_css compile_translations build_css: $(generated_css_files) $(generated_css_files): snikket_web/static/css/%.css: snikket_web/scss/%.scss $(scss_includes) + mkdir -p snikket_web/static/css/ $(SCSSC) -o "$@" "$<" clean: