gomvpkg -from "github.com/mitchellh/multistep" -to "github.com/hashicorp/packer/helper/multistep"
9 lines
193 B
Go
9 lines
193 B
Go
package common
|
|
|
|
import "github.com/hashicorp/packer/helper/multistep"
|
|
|
|
func IsStateCancelled(stateBag multistep.StateBag) bool {
|
|
_, ok := stateBag.GetOk(multistep.StateCancelled)
|
|
return ok
|
|
}
|