From 5ea5b8085ec9742f3c85ec6f099a05337d6b0428 Mon Sep 17 00:00:00 2001
From: Reiner Jung <reiner.jung@email.uni-kiel.de>
Date: Mon, 22 Aug 2022 12:53:20 +0200
Subject: [PATCH] Fixed PIP variable issue and monitoring.ini create issue

---
 frameworks/Kieker/python/functions.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/frameworks/Kieker/python/functions.sh b/frameworks/Kieker/python/functions.sh
index 746ddbe..5f1ba27 100644
--- a/frameworks/Kieker/python/functions.sh
+++ b/frameworks/Kieker/python/functions.sh
@@ -25,7 +25,7 @@ function getAgent() {
 	
 	"${GIT}" checkout "${KIEKER_4_PYTHON_BRANCH}"
 	"${PYTHON}" -m pip install --upgrade build
-        "{PIP}" install decorator
+        "${PIP}" install decorator
 	"${PYTHON}" -m build
 	"${PIP}" install dist/kieker-monitoring-for-python-0.0.1.tar.gz
 	cd "${BASE_DIR}"
@@ -76,6 +76,7 @@ function noInstrumentation() {
     info " # ${loop}.${RECURSION_DEPTH}.${index} ${TITLE[index]}"
     echo " # ${loop}.${RECURSION_DEPTH}.${index} ${TITLE[index]}" >> "${DATA_DIR}/kieker.log"
   
+    createMonitoring dummy
     createConfig True False 1
   
     "${PYTHON}" benchmark.py "${BASE_DIR}/config.ini" # &> "${RESULTS_DIR}/output_${loop}_${RECURSION_DEPTH}_${index}.txt"
-- 
GitLab