Skip to content
Snippets Groups Projects
Commit 978f4849 authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Fix exponential sizes script - should use correct path

parent 011b3c7c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment