summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-20 18:01:41 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-20 18:01:41 -0400
commit68cd349f5f828fb5cd86b242e5e70f669e6cb41a (patch)
tree6f6185dd9e1460b5622b7e6ef50c2de00eb7c580 /Makefile
parent85ec164c407cbd162db9a10ba5cc66c01dfb6d33 (diff)
Makefile: Update $(CSS).
* Makefile ($(CSS)): Switch to sassc. Ruby Sass is deprecated (https://sass-lang.com/ruby-sass).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e05e390..988b3b1 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ css: $(CSS)
$(CSS): $(SCSS) scss/style.scss $(BUILD_DIR)
mkdir -p `dirname $(CSS)`
- sass --style expanded $(SCSS) $(CSS)
+ sassc --style expanded $(SCSS) $(CSS)
js: $(JS_DIR) $(JS_SRC)