This will configure the default behavior when beginning to evaluate a build target. When `stopOnEntry` is used, it will default to `stepNext`. Otherwise, `stepContinue` will be used. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
10 lines
138 B
Go
10 lines
138 B
Go
package common
|
|
|
|
type Config struct {
|
|
StopOnEntry bool `json:"stopOnEntry,omitempty"`
|
|
}
|
|
|
|
func (c Config) GetConfig() Config {
|
|
return c
|
|
}
|