mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-25 01:04:00 -04:00
on error return empty defaultKeyPair{} rather than nil
This commit is contained in:
@@ -139,7 +139,7 @@ func (o *defaultKeyPairBuilder) Build() (KeyPair, error) {
|
||||
return o.newEcdsaKeyPair()
|
||||
}
|
||||
|
||||
return nil, fmt.Errorf("Unsupported keypair type: %s", o.kind.String())
|
||||
return defaultKeyPair{}, fmt.Errorf("Unsupported keypair type: %s", o.kind.String())
|
||||
}
|
||||
|
||||
// preallocatedKeyPair returns an SSH key pair based on user
|
||||
|
||||
Reference in New Issue
Block a user