diff --git a/docker_test.sh b/docker_test.sh index 837a756bc34acd92aba0637a997616385a5333a8..3c90bc90d062201e1af2ea394f313bacf555df01 100755 --- a/docker_test.sh +++ b/docker_test.sh @@ -90,5 +90,12 @@ done echo -e "\n==== Lauch $1 ====" docker-compose up -d +# Revert old changes so the script is idempotent +echo -e "\n==== Replace testing URL with production URL in all files ====" +for f in $(grep -l -r ".test.picasoft.net" .); do + echo -e "\tFound in" ${f} + sed -i "s/.test.picasoft.net/.picasoft.net/g" ${f} +done + echo -e "\n==== Print logs (use Ctrl+C to stop) ====" docker-compose logs -f