From f652e5081c02f9fe2779fb0e03ce47e599660456 Mon Sep 17 00:00:00 2001 From: Abdelghani ALIDRA Date: Thu, 2 May 2024 19:28:17 +0200 Subject: [PATCH] move cloned repositories to /tmp --- tests/test_lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_lib.sh b/tests/test_lib.sh index 756d4167c..439d625fa 100755 --- a/tests/test_lib.sh +++ b/tests/test_lib.sh @@ -10,7 +10,7 @@ checkout_lib() { IFS='/' read -ra ADDR <<< "$1" repo_name="${ADDR[-1]}" IFS='.' read -ra ADDR <<< "$repo_name" - repo_name="${ADDR[0]}" + repo_name="/tmp/${ADDR[0]}" git clone $1 $repo_name }