mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-23 07:07:16 -04:00
Use Printf not Println. D'oh.
This commit is contained in:
parent
35aaf44fa5
commit
8a9962882c
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ func CommHost(host string) func(multistep.StateBag) (string, error) {
|
|||
return func(state multistep.StateBag) (string, error) {
|
||||
|
||||
if host != "" {
|
||||
log.Println("Using ssh_host value: %s", ipAddress)
|
||||
log.Printf("Using ssh_host value: %s", host)
|
||||
return host, nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue