Skip to content

Commit

Permalink
Fixed typo in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mchung committed Nov 2, 2011
1 parent d3b8a96 commit 09743c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -3,11 +3,11 @@ DATE=$(shell DATE)
BOOTSTRAP = ./bootstrap.css
BOOTSTRAP_MIN = ./bootstrap.min.css
BOOTSTRAP_LESS = ./lib/bootstrap.less
LESS_COMPESSOR ?= `which lessc`
LESS_COMPRESSOR ?= `which lessc`
WATCHR ?= `which watchr`

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

0 comments on commit 09743c8

Please sign in to comment.