github.com/StackPointCloud/packer@v0.10.2-0.20180716202532-b28098e0f79b/builder/azure/common/state_bag.go (about) 1 package common 2 3 import "github.com/hashicorp/packer/helper/multistep" 4 5 func IsStateCancelled(stateBag multistep.StateBag) bool { 6 _, ok := stateBag.GetOk(multistep.StateCancelled) 7 return ok 8 }