We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b02772 commit 5a435b5Copy full SHA for 5a435b5
task.go
@@ -177,6 +177,9 @@ func (e *Executor) Setup() error {
177
if v < 2.2 && len(e.Taskfile.Includes) > 0 {
178
return fmt.Errorf(`task: Including Taskfiles is only available starting on Taskfile version v2.2`)
179
}
180
+ if v >= 3.0 && e.Taskfile.Expansions > 2 {
181
+ return fmt.Errorf(`task: The "expansions" setting is not available anymore on v3.0`)
182
+ }
183
184
if e.OutputStyle != "" {
185
e.Taskfile.Output = e.OutputStyle
0 commit comments