21 lines
381 B
Go
21 lines
381 B
Go
|
package dtl
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
||
|
"github.com/hashicorp/packer/helper/multistep"
|
||
|
)
|
||
|
|
||
|
func processStepResult(
|
||
|
err error, sayError func(error), state multistep.StateBag) multistep.StepAction {
|
||
|
|
||
|
if err != nil {
|
||
|
state.Put(constants.Error, err)
|
||
|
sayError(err)
|
||
|
|
||
|
return multistep.ActionHalt
|
||
|
}
|
||
|
|
||
|
return multistep.ActionContinue
|
||
|
|
||
|
}
|