File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,13 +131,13 @@ export class SSHConfig {
131131 const endBlockCount = countSubstring ( endBlock , raw )
132132 if ( startBlockCount !== endBlockCount ) {
133133 throw new SSHConfigBadFormat (
134- `Malformed config: Unterminated START CODER VSCODE ${ label ? label + " " : "" } block: Each START block must have an END block.` ,
134+ `Malformed config: ${ this . filePath } has an unterminated START CODER VSCODE ${ label ? label + " " : "" } block. Each START block must have an END block.` ,
135135 )
136136 }
137137
138138 if ( startBlockCount > 1 || endBlockCount > 1 ) {
139139 throw new SSHConfigBadFormat (
140- `Malformed config: ssh config has ${ startBlockCount } START CODER VSCODE ${ label ? label + " " : "" } sections, please remove all but one.` ,
140+ `Malformed config: ${ this . filePath } has ${ startBlockCount } START CODER VSCODE ${ label ? label + " " : "" } sections. Please remove all but one.` ,
141141 )
142142 }
143143
You can’t perform that action at this time.
0 commit comments