We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4155b13 commit44856b4Copy full SHA for 44856b4
src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt
@@ -289,18 +289,19 @@ class CoderCLIManager(
289
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
290
""".trimIndent()
291
.plus(extraConfig)
292
+ .plus(System.lineSeparator())
293
.plus(
-"""
294
- Host${getBackgroundHostName(deploymentURL, it)}
295
- ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
296
- ConnectTimeout 0
297
- StrictHostKeyChecking no
298
- UserKnownHostsFile /dev/null
299
- LogLevel ERROR
300
- SetEnv CODER_SSH_SESSION_TYPE=JetBrains
301
-""".trimIndent()
302
- .plus(extraConfig)
+"""
+ Host${getBackgroundHostName(deploymentURL, it)}
+ ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
+ ConnectTimeout 0
+ StrictHostKeyChecking no
+ UserKnownHostsFile /dev/null
+ LogLevel ERROR
+ SetEnv CODER_SSH_SESSION_TYPE=JetBrains
+""".trimIndent()
303
)
304
+ .plus(extraConfig)
305
.replace("\n",System.lineSeparator())
306
},
307