Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ff9c0b6

Browse files
committedJun 24, 2024·
try test fix
1 parent 0ef1fb8 commit ff9c0b6

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed
 

‎src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -287,18 +287,19 @@ class CoderCLIManager(
287287
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
288288
""".trimIndent()
289289
.plus(extraConfig)
290+
.plus(System.lineSeparator())
290291
.plus(
291-
"""
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)
292+
"""
293+
Host ${getBackgroundHostName(deploymentURL, it)}
294+
ProxyCommand CODER_SSH_USAGE_APP=disable ${proxyArgs.joinToString(" ")} $it
295+
ConnectTimeout 0
296+
StrictHostKeyChecking no
297+
UserKnownHostsFile /dev/null
298+
LogLevel ERROR
299+
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
300+
""".trimIndent()
301301
)
302+
.plus(extraConfig)
302303
.replace("\n", System.lineSeparator())
303304
},
304305
)

0 commit comments

Comments
 (0)
Please sign in to comment.