From a82b8017017185fbdb281226ddfeaf31a840b9b7 Mon Sep 17 00:00:00 2001
From: Quentin Duchemin <quentinduchemin@tuta.io>
Date: Tue, 17 Nov 2020 20:44:47 +0100
Subject: [PATCH] [docker_test.sh] Manage sub-sub-folders

---
 docker_test.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docker_test.sh b/docker_test.sh
index 2e7fa0d1..60867784 100755
--- a/docker_test.sh
+++ b/docker_test.sh
@@ -26,6 +26,8 @@ create_dumb_secrets() {
   fi
 }
 
+PATH=$(pwd)
+
 if [[ $(hostname) != *"test"* ]]; then
   echo "ERROR : DO NOT USE OUTSIDE OF A TEST MACHINE !"
   usage
@@ -48,7 +50,6 @@ if [[ -d "$1" ]]; then
 
   echo -e "\n==== Stop and remove existing containers and volumes ===="
   docker-compose down -v
-  cd ..
 else
   echo "WARNING : directory does not exist ($1) ; will try to pull"
 fi
@@ -59,7 +60,7 @@ read ans
 
 if [ $ans == "y" ]; then
   git pull
-  cd "$1"
+  cd ${PATH}/$1
   git checkout -- .
 else
   echo "Aborting."
-- 
GitLab