File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed
src/main/kotlin/com/coder/gateway/cli Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -289,18 +289,19 @@ class CoderCLIManager(
289289 SetEnv CODER_SSH_SESSION_TYPE=JetBrains
290290 """ .trimIndent()
291291 .plus(extraConfig)
292+ .plus(System .lineSeparator())
292293 .plus(
293- """
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)
294+ """
295+ Host ${getBackgroundHostName(deploymentURL, it)}
296+ ProxyCommand CODER_SSH_USAGE_APP=disable ${proxyArgs.joinToString(" " )} $it
297+ ConnectTimeout 0
298+ StrictHostKeyChecking no
299+ UserKnownHostsFile /dev/null
300+ LogLevel ERROR
301+ SetEnv CODER_SSH_SESSION_TYPE=JetBrains
302+ """ .trimIndent()
303303 )
304+ .plus(extraConfig)
304305 .replace(" \n " , System .lineSeparator())
305306 },
306307 )
You can’t perform that action at this time.
0 commit comments