mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-20 21:59:08 -04:00
8 lines
197 B
Go
8 lines
197 B
Go
package common
|
|
|
|
import "github.com/hashicorp/packer-plugin-sdk/multistep"
|
|
|
|
func IsStateCancelled(stateBag multistep.StateBag) bool {
|
|
_, ok := stateBag.GetOk(multistep.StateCancelled)
|
|
return ok
|
|
}
|