From: Antonio Ospite <ao2@ao2.it>
Date: Sat, 9 Jul 2016 12:41:22 +0000 (+0200)
Subject: Makefile: do not produce a sourcemap file when calling scss
X-Git-Url: https://git.ao2.it/SaveMySugar/savemysugar-website.git/commitdiff_plain/47cd0d19f4cbb693bdaaf0491f0ef91e52b3591c?hp=cee13bea1589a2e3a60233f1fb02a08e04a3aae4

Makefile: do not produce a sourcemap file when calling scss
---

diff --git a/Makefile b/Makefile
index 00421ac..ae00ecd 100644
--- a/Makefile
+++ b/Makefile
@@ -10,4 +10,4 @@ clean:
 
 %.css: %.scss
 	[ -d $(DESTDIR) ] || mkdir -p $(DESTDIR)
-	scss --compass --unix-newlines -t expanded $< $(DESTDIR)/$@
+	scss --compass --unix-newlines -t expanded --sourcemap=none $< $(DESTDIR)/$@