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 parent0ef1fb8 commitff9c0b6Copy full SHA for ff9c0b6
src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt
@@ -287,18 +287,19 @@ class CoderCLIManager(
287
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
288
""".trimIndent()
289
.plus(extraConfig)
290
+ .plus(System.lineSeparator())
291
.plus(
-"""
292
- Host${getBackgroundHostName(deploymentURL, it)}
293
- ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
294
- ConnectTimeout 0
295
- StrictHostKeyChecking no
296
- UserKnownHostsFile /dev/null
297
- LogLevel ERROR
298
- SetEnv CODER_SSH_SESSION_TYPE=JetBrains
299
-""".trimIndent()
300
- .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()
301
)
302
+ .plus(extraConfig)
303
.replace("\n",System.lineSeparator())
304
},
305