Fix overrides not being parsed correctly

This commit is contained in:
Kovid Goyal
2023-03-23 10:39:24 +05:30
parent 29a896f9d8
commit 14b58ba015
3 changed files with 8 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ func parse_kitten_args(found_extra_args []string, username, hostname_for_match s
literal_env = le
}
} else if key != "hostname" {
overrides = append(overrides, key+" "+val)
overrides = append(overrides, key+"="+val)
}
}
}