From f7330b961c0175f35ed1f0110d5bff1452a99498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renaud=20Ch=C3=A9nard?= <24716172+grazil@users.noreply.github.com> Date: Mon, 23 Sep 2024 22:21:53 +0200 Subject: [PATCH] Fix SASS generation in Makefile.style --- template.distillery/Makefile.style | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template.distillery/Makefile.style b/template.distillery/Makefile.style index bdd7b9b3..e2f08727 100644 --- a/template.distillery/Makefile.style +++ b/template.distillery/Makefile.style @@ -71,7 +71,7 @@ ifeq ($(shell which sassc),) [ -d $(SASSDIR) ] && \ SASS_PATH=$(SASS_PATH) sass --style compressed $(SASS_SRC) $@ else - [ -d $(SASSDIR) ] && + [ -d $(SASSDIR) ] && \ sassc -t compressed $(addprefix -I ,$(subst :, ,$(SASS_PATH))) $(SASS_SRC) $@ endif $(POSTCSS) --use autoprefixer --replace $@