1
0
mirror of https://github.com/go-task/task.git synced 2025-06-23 00:38:19 +02:00

fix: sources brace expansion (#2075)

This commit is contained in:
Pete Davison
2025-04-19 11:51:31 +01:00
committed by GitHub
parent f789c57624
commit a60c2ec3f8
10 changed files with 63 additions and 32 deletions

View File

@ -77,7 +77,7 @@ func (e *Executor) compiledTask(call *Call, evaluateShVars bool) (*ast.Task, err
Watch: origTask.Watch,
Namespace: origTask.Namespace,
}
new.Dir, err = execext.Expand(new.Dir)
new.Dir, err = execext.ExpandLiteral(new.Dir)
if err != nil {
return nil, err
}