mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
gomvpkg -from "github.com/mitchellh/multistep" -to "github.com/hashicorp/packer/helper/multistep"
8 lines
193 B
Go
8 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
|
|
}
|