Skip to content

Commit fe6f41b

Browse files
Update makeDemoLogFile.sh
The jars no longer contain the OS name so I've removed the if-block.
1 parent 806af2f commit fe6f41b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/makeDemoLogFile.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,7 @@ echo "VM Switches $REQUIRED_SWITCHES $OPTIONAL_SWITCHES"
7070

7171
echo "Building example HotSpot log"
7272

73-
if [ "$unamestr" = 'Darwin' ]; then
74-
export CLASSPATH=../ui/target/jitwatch-ui-shaded-mac.jar
75-
else
76-
export CLASSPATH=../ui/target/jitwatch-ui-shaded.jar
77-
fi
73+
export CLASSPATH=../ui/target/jitwatch-ui-shaded.jar
7874

7975
"$JAVA_HOME/bin/java" $REQUIRED_SWITCHES $OPTIONAL_SWITCHES -cp "$CLASSPATH" org.adoptopenjdk.jitwatch.demo.MakeHotSpotLog 2>&1 >/dev/null
8076
echo "Done"

0 commit comments

Comments
 (0)