mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 08:42:33 -04:00
Merge pull request #7416 from estenrye/fix_issue_7414
Fix invalid character issue on Windows.
This commit is contained in:
commit
e42be44d13
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ func parseSSHConfig(lines []string, value string) string {
|
|||
out = line[index+len(value):]
|
||||
}
|
||||
}
|
||||
return out
|
||||
return strings.Trim(out, "\r\n")
|
||||
}
|
||||
|
||||
func yesno(yn string) bool {
|
||||
|
|
|
|||
Loading…
Reference in a new issue