Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2011-11-04 04:06:13 +0400
committerJacob Thornton <jacobthornton@gmail.com>2011-11-04 04:06:13 +0400
commit9defc212181c2c6f5a6066d307bed5c8e203896a (patch)
treea75db2c3c755d8088ac98e9f16529038fc9afcc4
parent869f11305aa3d4360f51a7ee08a86664c3caa860 (diff)
parentf285048b34a43c4feda9235e6cbb3b334159c2b8 (diff)
Merge branch 'master' of https://github.com/twitter/bootstrap into dev
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 91dd92a4f5..16177554ea 100644
--- a/Makefile
+++ b/Makefile
@@ -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; \