Skip to content

Commit 2b47451

Browse files
authored
Merge pull request #2202 from pendo324/colorterm-quoting
fix: COLORTERM quoting on Windows
2 parents 9a964c0 + d16c126 commit 2b47451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/limactl/shell.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func shellAction(cmd *cobra.Command, args []string) error {
180180
}
181181
if _, present := os.LookupEnv("COLORTERM"); present {
182182
// SendEnv config is cumulative, with already existing options in ssh_config
183-
sshArgs = append(sshArgs, "-o", "SendEnv=\"COLORTERM\"")
183+
sshArgs = append(sshArgs, "-o", "SendEnv=COLORTERM")
184184
}
185185
sshArgs = append(sshArgs, []string{
186186
"-q",

0 commit comments

Comments
 (0)