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 Jan 24, 2012
1 parent 9178052 commit 54f04d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -2,7 +2,7 @@ VERSION=2.0.0
BOOTSTRAP = ./bootstrap.css
BOOTSTRAP_MIN = ./bootstrap.min.css
BOOTSTRAP_LESS = ./lib/bootstrap.less
LESS_COMPESSOR ?= `which lessc`
LESS_COMPRESSOR ?= `which lessc`
UGLIFY_JS ?= `which uglifyjs`
WATCHR ?= `which watchr`

Expand All @@ -11,7 +11,7 @@ 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 54f04d3

Please sign in to comment.