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

Add error message if MooBench.jar is missing

parent d745c9c1
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,12 @@ JAVAARGS="${JAVAARGS} -verbose:gc -XX:+PrintCompilation"
#JAVAARGS="${JAVAARGS} -Djava.compiler=NONE"
JAR="-jar MooBench.jar"
if [ ! -f "MooBench.jar" ]
then
echo "MooBench.jar missing; please build it first using ./gradlew assemble in the main folder"
exit 1
fi
if [ ! -f ${BASEDIR}lib/opentelemetry-javaagent-all.jar ]
then
mkdir -p ${BASEDIR}lib
......
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