From 470b3e49235f0bb0018f749a8ccfb375c78aa76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 10 Aug 2017 09:27:47 +0200 Subject: [PATCH] tests: Fix test_compose.sh paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The paths need to be absolute so that subprocesses started during the compose with a modified cwd will still work. Signed-off-by: Lubomír Sedlář --- tests/test_compose.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_compose.sh b/tests/test_compose.sh index e1810415..9676507c 100755 --- a/tests/test_compose.sh +++ b/tests/test_compose.sh @@ -2,7 +2,7 @@ set -e -HERE=$(dirname "$0") +HERE=$(realpath "$(dirname "$0")") PYTHONPATH=$HERE/../:$PYTHONPATH PATH=$HERE/../bin:$PATH