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 parentbcebbd4 commita9265beCopy full SHA for a9265be
src/sshConfig.ts
@@ -131,13 +131,13 @@ export class SSHConfig {
131
constendBlockCount=countSubstring(endBlock,raw)
132
if(startBlockCount!==endBlockCount){
133
thrownewSSHConfigBadFormat(
134
-`Malformed config:UnterminatedSTART CODER VSCODE${label ?label+" " :""}block: Each START block must have an END block.`,
+`Malformed config:${this.filePath} has an unterminatedSTART CODER VSCODE${label ?label+" " :""}block. Each START block must have an END block.`,
135
)
136
}
137
138
if(startBlockCount>1||endBlockCount>1){
139
140
-`Malformed config:ssh confighas${startBlockCount} START CODER VSCODE${label ?label+" " :""}sections, please remove all but one.`,
+`Malformed config:${this.filePath}has${startBlockCount} START CODER VSCODE${label ?label+" " :""}sections. Please remove all but one.`,
141
142
143