Allow Optional Args With Extract

This commit is contained in:
2026-04-21 19:04:58 +02:00
parent 8bfcebc6dc
commit b690135057
3 changed files with 34 additions and 20 deletions
+2 -1
View File
@@ -300,7 +300,8 @@ func runExtract(ctx context) error {
return err
}
result, err := pipeline.Extract(p)
files := ctx.args[1:]
result, err := pipeline.Extract(p, files...)
if err != nil {
return err
}