Skip to content

Commit 09743c8

Browse files
committed
Fixed typo in Makefile
1 parent d3b8a96 commit 09743c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ DATE=$(shell DATE)
33
BOOTSTRAP = ./bootstrap.css
44
BOOTSTRAP_MIN = ./bootstrap.min.css
55
BOOTSTRAP_LESS = ./lib/bootstrap.less
6-
LESS_COMPESSOR ?= `which lessc`
6+
LESS_COMPRESSOR ?= `which lessc`
77
WATCHR ?= `which watchr`
88

99
build:
10-
@@if test ! -z ${LESS_COMPESSOR}; then \
10+
@@if test ! -z ${LESS_COMPRESSOR}; then \
1111
sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"${DATE}"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
1212
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \
1313
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP_MIN} --compress; \

0 commit comments

Comments
 (0)