v3.0.0-alpha.8.3

This commit is contained in:
Lea Anthony 2024-12-07 10:13:58 +11:00
commit e0d788bea9
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405
3 changed files with 16 additions and 13 deletions

View file

@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## v3.0.0-alpha.8.3 - 2024-12-07
## v3.0.0-alpha.8.2 - 2024-12-07
### Changed

View file

@ -84,18 +84,19 @@ func RunTask(options *RunTaskOptions, otherArgs []string) error {
}
e := task.Executor{
Force: options.Force,
Watch: options.Watch,
Verbose: options.Verbose,
Silent: options.Silent,
Dir: options.Dir,
Dry: options.Dry,
Entrypoint: options.EntryPoint,
Summary: options.Summary,
Parallel: options.Parallel,
Color: options.Color,
Concurrency: options.Concurrency,
Interval: time.Duration(options.Interval) * time.Second,
Force: options.Force,
Watch: options.Watch,
Verbose: options.Verbose,
Silent: options.Silent,
Dir: options.Dir,
Dry: options.Dry,
Entrypoint: options.EntryPoint,
Summary: options.Summary,
Parallel: options.Parallel,
Color: options.Color,
Concurrency: options.Concurrency,
Interval: time.Duration(options.Interval) * time.Second,
DisableVersionCheck: true,
Stdin: os.Stdin,
Stdout: os.Stdout,

View file

@ -1 +1 @@
v3.0.0-alpha.8.2
v3.0.0-alpha.8.3