some fixes
All checks were successful
go-test / go test (push) Successful in 26s
Release / Build & publish (push) Successful in 59s

This commit is contained in:
2026-06-10 09:55:25 +03:00
parent cbc000e872
commit 1ef3973a15
7 changed files with 246 additions and 0 deletions

View File

@@ -807,6 +807,18 @@ func (p *Parser) parsePattern() (*Pattern, error) {
return nil, err
}
pat.DirsGlob = val.Value
case "stage":
b, err := p.parseBool()
if err != nil {
return nil, err
}
pat.StageAll = b
case "args_file":
val, err := p.expect(TOKEN_STRING)
if err != nil {
return nil, err
}
pat.ArgsFile = val.Value
case "args":
xs, err := p.parseStringList()
if err != nil {