From 385283602fe30df757e447cb937730c9b527c1c1 Mon Sep 17 00:00:00 2001
From: Quentin Duchemin <quentinduchemin@tuta.io>
Date: Sun, 21 Nov 2021 18:47:55 +0100
Subject: [PATCH] [Test] Revert changes in URL before the script finishes

So we can just commit and push on the test machine without learning too much Git
---
 docker_test.sh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/docker_test.sh b/docker_test.sh
index 837a756b..3c90bc90 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
-- 
GitLab