-
Notifications
You must be signed in to change notification settings - Fork 0
Bootstrapscript
Румата Эсторский edited this page Sep 4, 2013
·
1 revision
#!/bin/sh
# Поместите в файл и зыпустите из корневого каталога Вашего проекта
wget http://getbootstrap.com/2.3.2/assets/bootstrap.zip
unzip bootstrap.zip
# Копируем
cp bootstrap/js/*.js ../public/javascripts
cp bootstrap/css/*.css ../public/stylesheets
mkdir ../public/images/bootstrap
cp bootstrap/img/* ../public/images/bootstrap
# Патчим файлы
sed -e 's/..\/img/..\/images\/bootstrap/' bootstrap/css/bootstrap.css > ../public/stylesheets/bootstrap.css
sed -e 's/..\/img/..\/images\/bootstrap/' bootstrap/css/bootstrap.min.css > ../public/stylesheets/bootstrap.min.css
rm bootstrap.zip
rm -rf bootstrap