1
0
mirror of https://github.com/writeas/writefreely synced 2025-02-02 15:56:47 +01:00

Merge pull request #99 from gytisrepecka/master

Added /bin/lessc path to be compatible with CentOS 7
This commit is contained in:
Matt Baer 2019-05-02 10:01:28 -04:00 committed by GitHub
commit 788713116f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@ 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 ifeq ($(shell which lessc),/bin/lessc)
LESSC=/bin/lessc
else
LESSC=node_modules/.bin/lessc
endif