You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/sshConfig.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -138,12 +138,12 @@ export class SSHConfig {
138
138
139
139
if(startBlockCount!==endBlockCount){
140
140
thrownewSSHConfigBadFormat(
141
-
`Malformed config: ssh config has ${startBlockCount}${label} START comments but ${endBlockCount}${label} END comments. Each START must have a matching END.`,
141
+
`Malformed config: Unterminated START CODER VSCODE${label ? label+" " : ""}block: Each START block must have an END block.`,
142
142
)
143
143
}
144
144
if(startBlockCount>1||endBlockCount>1){
145
145
thrownewSSHConfigBadFormat(
146
-
`Malformed config: ssh config has ${startBlockCount}${label}sections, please remove all but one.`,
146
+
`Malformed config: ssh config has ${startBlockCount}START CODER VSCODE ${label ? label+" " : ""}sections, please remove all but one.`,
0 commit comments