summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-09-17 10:00:27 -0400
committerTim Graham <timograham@gmail.com>2018-09-17 10:00:50 -0400
commit2a01da08b65ac41185e8c304ea7245992f423a37 (patch)
tree1fcb2bd796f24142294b29f97b7b60a7d5489f16 /Makefile
parentc47a057175a0f40041cf13c32ad477cd16355f93 (diff)
Updated to libsass==0.15.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8c1254b1..9663784f 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,10 @@ collectstatics: compile-scss
./manage.py collectstatic --noinput
compile-scss:
- sassc $(SCSS)/output.scss $(STATIC)/css/output.css -s compressed
+ pysassc $(SCSS)/output.scss $(STATIC)/css/output.css -s compressed
compile-scss-debug:
- sassc $(SCSS)/output.scss $(STATIC)/css/output.css --sourcemap
+ pysassc $(SCSS)/output.scss $(STATIC)/css/output.css --sourcemap
watch-scss:
watchmedo shell-command --patterns=*.scss --recursive --command="make compile-scss-debug" $(SCSS)