From 679506f677f1669456f0c181532fba52f33f5566 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Wed, 11 May 2022 14:24:43 +0200 Subject: [PATCH] Remove -J in SBT_OPTS, the GitHub VM image uses official sbt --- play-scala-tls-example/play | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-scala-tls-example/play b/play-scala-tls-example/play index d6d57f73c..f6d553717 100755 --- a/play-scala-tls-example/play +++ b/play-scala-tls-example/play @@ -77,7 +77,7 @@ export AGENT=$(pwd)/$(find target -name 'jetty-alpn-agent-*.jar' | head -1) echo "Detected ALPN Agent: $AGENT " # Run Play (this should work for both run and start). -export SBT_OPTS="$SBT_OPTS -J-javaagent:$AGENT" +export SBT_OPTS="$SBT_OPTS -javaagent:$AGENT" ## Ucomment the following to debug SSL issues. #export SBT_OPTS="$SBT_OPTS -Djavax.net.debug=all"