From 978f484918d39479de4e6e8625dd96f505b1ffaf Mon Sep 17 00:00:00 2001 From: David Georg Reichelt <davidgeorg_reichelt@dagere.de> Date: Sun, 22 Jan 2023 12:25:08 +0100 Subject: [PATCH] Fix exponential sizes script - should use correct path --- frameworks/Kieker-java/runExponentialSizes.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frameworks/Kieker-java/runExponentialSizes.sh b/frameworks/Kieker-java/runExponentialSizes.sh index 29dddce..d773ba6 100755 --- a/frameworks/Kieker-java/runExponentialSizes.sh +++ b/frameworks/Kieker-java/runExponentialSizes.sh @@ -7,14 +7,14 @@ # configure base dir BASE_DIR=$(cd "$(dirname "$0")"; pwd) -if [ -f "${BASE_DIR}/../common-functions.sh" ] ; then - . "${BASE_DIR}/../common-functions.sh" +if [ -f "${BASE_DIR}/../../common-functions.sh" ] ; then + . "${BASE_DIR}/../../common-functions.sh" else echo "Missing configuration: ${BASE_DIR}/../common-functions.sh" exit 1 fi -RESULTS_DIR="${BASE_DIR}/results-Kieker" +RESULTS_DIR="${BASE_DIR}/results-Kieker-java" # # checks -- GitLab