From 91a181f628edf546e96ca4df987b1880b384c4fb Mon Sep 17 00:00:00 2001 From: Darius Kazemi Date: Tue, 30 Apr 2019 10:40:00 -0700 Subject: [PATCH] Adding another possible path for lessc to Makefile --- less/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/less/Makefile b/less/Makefile index a2e8b63..49aa9ea 100644 --- a/less/Makefile +++ b/less/Makefile @@ -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