From dbdcce0655f75e31218990f53c77a424b982dccc Mon Sep 17 00:00:00 2001 From: "Alexander.Likhachev" Date: Mon, 22 Jan 2024 17:43:12 +0100 Subject: [PATCH] [Daemon] Fix a typo in the jvm arguments --- .../daemon-client/src/main/kotlin/KotlinCompilerClient.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/daemon/daemon-client/src/main/kotlin/KotlinCompilerClient.kt b/compiler/daemon/daemon-client/src/main/kotlin/KotlinCompilerClient.kt index c3c1bdace1d..e528bd7d2eb 100644 --- a/compiler/daemon/daemon-client/src/main/kotlin/KotlinCompilerClient.kt +++ b/compiler/daemon/daemon-client/src/main/kotlin/KotlinCompilerClient.kt @@ -463,7 +463,7 @@ object KotlinCompilerClient { val platformSpecificOptions = listOf( // hide daemon window "-Djava.awt.headless=true", - "-D$${CompilerSystemProperties.JAVA_RMI_SERVER_HOSTNAME.property}=$serverHostname" + "-D${CompilerSystemProperties.JAVA_RMI_SERVER_HOSTNAME.property}=$serverHostname" ) val javaVersion = CompilerSystemProperties.JAVA_VERSION.value?.toIntOrNull() val javaIllegalAccessWorkaround =