mvdan / sh

A shell parser, formatter, and interpreter with bash support; includes shfmt
https://pkg.go.dev/mvdan.cc/sh/v3
BSD 3-Clause "New" or "Revised" License
7.28k stars 346 forks source link

Add Stat field to expand.Config struct #825

Closed theclapp closed 2 years ago

theclapp commented 2 years ago

Config.glob used to call os.Stat directly. Now it calls Config.Stat if it's set, and if not, calls cfg.Readdir on the given file's directory, and returns the entry for the file.

Fixes #824.

mvdan commented 2 years ago

We went with https://github.com/mvdan/sh/pull/826 instead :) Thanks again for your help!