feat: invert call.Direct (#1459)

This commit is contained in:
Pete Davison
2024-01-11 00:32:49 +00:00
committed by GitHub
parent 07e6f5cad7
commit 42af0fc791
6 changed files with 22 additions and 22 deletions

View File

@@ -304,7 +304,7 @@ func run() error {
// If there are no calls, run the default task instead
if len(calls) == 0 {
calls = append(calls, ast.Call{Task: "default", Direct: true})
calls = append(calls, ast.Call{Task: "default"})
}
globals.Set("CLI_ARGS", ast.Var{Value: cliArgs})