Skip to content

Commit 1e9465e

Browse files
committed
Support providing path to SASS.
1 parent 1957ae5 commit 1e9465e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ DOCS_HTML_DST := docs/_build/html
3131

3232
RJS = r.js
3333

34+
SASS = node-sass
35+
3436
all: man js site
3537

3638
init:
@@ -54,7 +56,7 @@ man: $(DOCS_RST_SRC)
5456
mv man/isso.conf.5 man/man5/isso.conf.5
5557

5658
${DOCS_CSS_DST}: $(DOCS_CSS_SRC) $(DOCS_CSS_DEP)
57-
node-sass --no-cache $(DOCS_CSS_SRC) $@
59+
$(SASS) --no-cache $(DOCS_CSS_SRC) $@
5860

5961
${DOCS_HTML_DST}: $(DOCS_RST_SRC) $(DOCS_CSS_DST)
6062
sphinx-build -b dirhtml docs/ $@

0 commit comments

Comments
 (0)