You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
360 B
21 lines
360 B
#!/bin/bash
|
|
|
|
echo "-- Preparing WWW files --"
|
|
|
|
[[ -e html ]] && rm -r html
|
|
mkdir -p html/img
|
|
mkdir -p html/js
|
|
mkdir -p html/css
|
|
|
|
cd html_orig
|
|
sh ./packjs.sh
|
|
php ./build_html.php
|
|
cd ..
|
|
|
|
cp html_orig/js/app.js html/js/
|
|
|
|
sass html_orig/sass/app.scss html/css/app.css
|
|
rm html/css/app.css.map
|
|
|
|
cp html_orig/img/* html/img/
|
|
cp html_orig/favicon.ico html/favicon.ico
|
|
|