2018-01-19 17:06:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source build-config.cfg
|
|
|
|
|
2018-01-24 19:09:23 +00:00
|
|
|
## Install composer dependencies
|
|
|
|
composer install
|
|
|
|
|
2018-01-19 17:06:56 +00:00
|
|
|
## Compile SASS
|
|
|
|
sh compile-sass.sh
|
|
|
|
|
2018-01-24 19:09:23 +00:00
|
|
|
echo "Updating files of theme"
|
2018-01-19 17:06:56 +00:00
|
|
|
rm -rf $destination
|
|
|
|
mkdir $destination
|
|
|
|
cp -R src/* $destination/
|
2018-01-24 19:09:23 +00:00
|
|
|
|
|
|
|
##Removendo o arquivo sass
|
2018-01-19 17:06:56 +00:00
|
|
|
rm -rf $destination/scss
|
2018-01-24 19:09:23 +00:00
|
|
|
|
|
|
|
##Bootstrap
|
|
|
|
mkdir $destination/vendor/bootstrap/css
|
|
|
|
cp $destination/vendor/bootstrap/scss/bootstrap.min.css $destination/vendor/bootstrap/css
|
|
|
|
rm -rf $destination/vendor/bootstrap/scss
|
|
|
|
|
|
|
|
echo "Finish!!"
|