Skip to content

Commit d16c126

Browse files
committed
fix: COLORTERM quoting on Windows
Signed-off-by: Justin Alvarez <[email protected]>
1 parent 88c8916 commit d16c126

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)