Adding another possible path for lessc to Makefile

This commit is contained in:
Darius Kazemi 2019-04-30 10:40:00 -07:00
parent fdbefa806f
commit 91a181f628
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
ifeq ($(shell which lessc),/usr/bin/lessc)
LESSC=/usr/bin/lessc
else ifeq ($(shell which lessc),/usr/local/bin/lessc)
LESSC=/usr/local/bin/lessc
else
LESSC=node_modules/.bin/lessc
endif