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>2012-04-23 15:16:27 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-04-23 15:16:27 +0400
commitb8b1ffde055b9e04f658201f81cf7974d56ae0c2 (patch)
treedf1141cbbd9de45cf7fefa35d33f7ccacede0b91 /Makefile
parentc408d8961b96f12c40aaf1d7647578cd3535bd64 (diff)
hr to var in makefil
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9a4ffa4536..ea9d3a3f99 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@ BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE_LESS = ./less/responsive.less
DATE=$(shell date +%I:%M%p)
CHECK=\033[32m✔\033[39m
+HR=\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#
#
@@ -11,9 +12,9 @@ CHECK=\033[32m✔\033[39m
#
build:
- @echo "\n##################################################"
+ @echo "\n${HR}"
@echo "Building Bootstrap..."
- @echo "##################################################\n"
+ @echo "${HR}\n"
@jshint js/*.js --config js/.jshintrc
@jshint js/tests/unit/*.js --config js/.jshintrc
@echo "Running JSHint on javascript... ${CHECK} Done"
@@ -31,9 +32,9 @@ build:
@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 "Compiling and minifying javascript... ${CHECK} Done"
- @echo "\n##################################################"
+ @echo "\n${HR}"
@echo "Bootstrap successfully built at ${DATE}."
- @echo "##################################################\n"
+ @echo "${HR}\n"
@echo "Thanks for using Bootstrap,"
@echo "<3 @mdo and @fat\n"