Skip to content

Commit 8a56af9

Browse files
committed
A bit too many quotes
Forgot escape adds its own wrapping quotes.
1 parent f9b416a commit 8a56af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/remote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ export class Remote {
513513
let headerArg = ""
514514
const headerCommand = vscode.workspace.getConfiguration().get("coder.headerCommand")
515515
if (typeof headerCommand === "string" && headerCommand.trim().length > 0) {
516-
headerArg = ` --header-command "${escape(headerCommand)}"`
516+
headerArg = ` --header-command ${escape(headerCommand)}`
517517
}
518518

519519
const sshValues: SSHValues = {

0 commit comments

Comments
 (0)