소스 검색

Merge pull request #99 from gytisrepecka/master

Added /bin/lessc path to be compatible with CentOS 7
pull/104/head
Matt Baer 5 년 전
committed by GitHub
부모
커밋
788713116f
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      less/Makefile

+ 3
- 1
less/Makefile 파일 보기

@@ -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
@@ -14,7 +16,7 @@ all :
$(LESSC) fonts.less --clean-css="--s1 --advanced" $(CSSDIR)fonts.css
$(LESSC) icons.less --clean-css="--s1 --advanced" $(CSSDIR)icons.css

install :
install :
./install-less.sh
$(MAKE) all



불러오는 중...
취소
저장