2016-10-25 14:09:53 +13:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2017-01-12 20:19:41 +13:00
|
|
|
# copy assets
|
2017-01-13 08:23:07 +13:00
|
|
|
echo -e Copying assets $SERVER
|
|
|
|
|
rsync -avrs src/assets/ mopidy_iris/static/assets/ 2>&1 >/dev/null
|
2017-01-12 20:19:41 +13:00
|
|
|
|
|
|
|
|
# create HTML files
|
2017-09-03 21:00:17 +12:00
|
|
|
echo -e Copying index.html
|
2017-01-12 20:19:41 +13:00
|
|
|
cp src/index.html mopidy_iris/static/index.html
|
|
|
|
|
|
|
|
|
|
# process production html
|
2017-09-03 21:00:17 +12:00
|
|
|
BUILD_VERSION=$(date | md5sum | cut -f1 -d' ')
|
|
|
|
|
echo -e "Injecting build version to js/css URLs ($BUILD_VERSION)"
|
|
|
|
|
sed -i 's/BUILD_VERSION_HERE/'$BUILD_VERSION'/g' mopidy_iris/static/index.html
|
2017-01-13 08:23:07 +13:00
|
|
|
|
|
|
|
|
echo -e "\x1b[32;01m"Done!"\x1b[39;49;00m"
|