mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
b80a5ff7da
Now automatically takes care of path changes for the includes in bootstrap.scss and responsive.scss (From #258)
25 lines
No EOL
842 B
Bash
Executable file
25 lines
No EOL
842 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ROOT=`pwd`"/vendor/assets"
|
|
TMP='tmp/sass-twitter-bootstrap'
|
|
# Pull down sass-twitter-bootstrap sources
|
|
git clone https://github.com/jlong/sass-twitter-bootstrap.git tmp/sass-twitter-bootstrap
|
|
# Copy lib/ to stylesheets/
|
|
mkdir -p $ROOT/stylesheets/bootstrap
|
|
cp -r $TMP/lib/* $ROOT/stylesheets/bootstrap
|
|
# Copy js/ to javascripts/
|
|
cp -r $TMP/js/* $ROOT/javascripts
|
|
# Copy img/ to images/
|
|
cp -r $TMP/img/* $ROOT/images
|
|
# Remove tests
|
|
rm -r $ROOT/javascripts/tests
|
|
rm -r $ROOT/stylesheets/bootstrap/tests
|
|
|
|
# Patch the asset-url in _variables.scss
|
|
patch -f vendor/assets/stylesheets/bootstrap/_variables.scss < asseturl.patch
|
|
|
|
# Patch paths in bootstrap.scss and responsive.scss
|
|
sed -i .bak 's_@import \"_@import \"bootstrap/_g' $ROOT/stylesheets/bootstrap/{bootstrap,responsive}.scss
|
|
rm $ROOT/stylesheets/bootstrap/*.bak
|
|
|
|
rm -rf $TMP |