From d8f6a882db03d611851872cad68374141a7a5c6c Mon Sep 17 00:00:00 2001 From: Viacheslav Kukushkin Date: Fri, 5 Apr 2024 08:33:54 +0400 Subject: [PATCH] Minor fix after changing logs folder (#573) Co-authored-by: hasan7n <78664424+hasan7n@users.noreply.github.com> --- cli/tests_setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/tests_setup.sh b/cli/tests_setup.sh index 8922db44c..73c66155a 100644 --- a/cli/tests_setup.sh +++ b/cli/tests_setup.sh @@ -15,6 +15,7 @@ DIRECTORY="${DIRECTORY:-/tmp/medperf_test_files}" CLEANUP="${CLEANUP:-false}" FRESH="${FRESH:-false}" MEDPERF_STORAGE=~/.medperf +MEDPERF_LOG_STORAGE=~/.medperf_logs SERVER_STORAGE_ID="$(echo $SERVER_URL | cut -d '/' -f 3 | sed -e 's/[.:]/_/g')" TIMEOUT="${TIMEOUT:-30}" VERSION_PREFIX="/api/v0" @@ -46,7 +47,7 @@ checkFailed(){ fi echo $1 echo "medperf log:" - tail "$MEDPERF_STORAGE/logs/medperf.log" + tail "$MEDPERF_LOG_STORAGE/medperf.log" if ${CLEANUP}; then clean fi