Commit d76b7e8c authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

fmt

parent 0f39a445
...@@ -41,6 +41,7 @@ func (s *StepRunSourceInstance) Run(state map[string]interface{}) multistep.Step ...@@ -41,6 +41,7 @@ func (s *StepRunSourceInstance) Run(state map[string]interface{}) multistep.Step
state["error"] = fmt.Errorf("There was a problem with the source AMI: %s", err) state["error"] = fmt.Errorf("There was a problem with the source AMI: %s", err)
return multistep.ActionHalt return multistep.ActionHalt
} }
if len(imageResp.Images) != 1 { if len(imageResp.Images) != 1 {
state["error"] = fmt.Errorf("The source AMI '%s' could not be found.", s.SourceAMI) state["error"] = fmt.Errorf("The source AMI '%s' could not be found.", s.SourceAMI)
return multistep.ActionHalt return multistep.ActionHalt
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment