aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dudebout <[email protected]>2013-01-02 05:59:55 -0500
committerNicolas Dudebout <[email protected]>2013-01-14 08:58:47 -0500
commit2a151d9e2f68d3658e90f08a23af15069a14d27e (patch)
tree0ee98a71d5f989d0a7c5de3ec2c137e2c1931c2e
parent25803a966b07df24500dd74fc100c14656fb7d82 (diff)
downloadbootstrap-2a151d9e2f68d3658e90f08a23af15069a14d27e.tar.xz
bootstrap-2a151d9e2f68d3658e90f08a23af15069a14d27e.zip
Moves one @printf statement to be more accurate.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eb7356d7d..75c5a5659 100644
--- a/Makefile
+++ b/Makefile
@@ -26,10 +26,10 @@ build:
@cp js/*.js docs/assets/js/
@cp js/tests/vendor/jquery.js docs/assets/js/
@echo " ${CHECK} Done"
+ @printf "Compiling and minifying javascript..."
@cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > docs/assets/js/bootstrap.js
@./node_modules/.bin/uglifyjs -nc docs/assets/js/bootstrap.js > docs/assets/js/bootstrap.min.tmp.js
@echo "/**\n* Bootstrap.js v2.3.0 by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > docs/assets/js/copyright.js
- @printf "Compiling and minifying javascript..."
@cat docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js > docs/assets/js/bootstrap.min.js
@rm docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js
@echo " ${CHECK} Done"