Files
Iris/build.sh

16 lines
446 B
Bash
Raw Normal View History

2016-10-25 14:09:53 +13:00
#!/bin/bash
# copy assets
echo -e Copying assets $SERVER
rsync -avr src/assets/ mopidy_iris/static/assets/ 2>&1 >/dev/null
# create HTML files
2017-09-03 21:00:17 +12:00
echo -e Copying index.html
cp src/index.html mopidy_iris/static/index.html
# process production html
BUILD_NAME=$(date +%s)
echo -e "Injecting build name to js/css URLs ($BUILD_NAME)"
sed -i 's/BUILD_NAME_HERE/'$BUILD_NAME'/g' mopidy_iris/static/index.html
echo -e "\x1b[32;01m"Done!"\x1b[39;49;00m"