summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-07-30 11:02:59 -0400
committerThomas Park <thomas@thomaspark.me>2013-07-30 11:02:59 -0400
commit757f707c3462400b0f24d142411ff1bbea57d24f (patch)
treec3dfa8139c8bdf05b4cde5590e1136522c98b66b
parenteb9feaf62ce95d3bd4409bad6bc78d2e5b332d2e (diff)
swatchmaker: update makefile to use bootstrap 2.3.2
-rwxr-xr-xswatchmaker/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/swatchmaker/Makefile b/swatchmaker/Makefile
index 7eda3f8c..9a65fa74 100755
--- a/swatchmaker/Makefile
+++ b/swatchmaker/Makefile
@@ -12,15 +12,15 @@ bootswatch:
bootstrap:
-test -d bootstrap && rm -r bootstrap
- curl --location -o latest_bootstrap.tar.gz https://github.com/twitter/bootstrap/tarball/master
- tar -xvzf latest_bootstrap.tar.gz
- mv twbs-bootstrap* bootstrap
- rm latest_bootstrap.tar.gz
+ curl --location -o bootstrap-v2.3.2.tar.gz https://github.com/twbs/bootstrap/archive/v2.3.2.tar.gz
+ tar -xvzf bootstrap-v2.3.2.tar.gz
+ mv bootstrap-2.3.2 bootstrap
+ rm bootstrap-v2.3.2.tar.gz
default:
-test -f ${OUTPUT_PATH}/variables.less && rm ${OUTPUT_PATH}/variables.less
-test -f ${OUTPUT_PATH}/bootswatch.less && rm ${OUTPUT_PATH}/bootswatch.less
- curl --location -o ${OUTPUT_PATH}/variables.less https://raw.github.com/twitter/bootstrap/master/less/variables.less
+ curl --location -o ${OUTPUT_PATH}/variables.less https://raw.github.com/twbs/bootstrap/v2.3.2/less/variables.less
curl --location -o ${OUTPUT_PATH}/bootswatch.less https://raw.github.com/thomaspark/bootswatch/gh-pages/swatchmaker/swatch/bootswatch.less
make bootswatch