mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-05 17:05:07 -05:00
31 lines
822 B
Bash
Executable File
31 lines
822 B
Bash
Executable File
#!/bin/bash
|
|
|
|
V=$1
|
|
M=$2
|
|
dst=www
|
|
|
|
HOST_PRIMARY=`cat ../config/hosts/$M`
|
|
HOST_AUTH=`cat ../config/hosts/auth_$M`
|
|
HOST_TOMCAT=`cat ../config/hosts/tomcat_$M`
|
|
HOST_WEB=`cat ../config/hosts/web_$M`
|
|
|
|
function replaceStrings() {
|
|
sed -i '' -f replace_js_$M.sed $1
|
|
sed -i '' -e s/__VERSION__/$V/g $1
|
|
sed -i '' -e s/__THIS_YEAR__/2013/g $1
|
|
|
|
sed -i '' -e s/{##HOST_PRIMARY##}/$HOST_PRIMARY/g $1
|
|
sed -i '' -e s/{##HOST_AUTH##}/$HOST_AUTH/g $1
|
|
sed -i '' -e s/{##HOST_TOMCAT##}/$HOST_TOMCAT/g $1
|
|
sed -i '' -e s/{##HOST_WEB##}/$HOST_WEB/g $1
|
|
}
|
|
|
|
echo Replacing Strings
|
|
replaceStrings $dst/rev/$V/client.js
|
|
replaceStrings $dst/rev/$V/signup.js
|
|
replaceStrings $dst/rev/$V/refill.js
|
|
replaceStrings $dst/rev/$V/delete.js
|
|
replaceStrings $dst/rev/$V/mobile_large.js
|
|
replaceStrings $dst/rev/$V/mobile_small.js
|
|
|