You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Glob in Go doesn’t actually work the way it’s tested here:
Include: []string{"build/**/*"},
This test passes in *nix because (I think) the underlying shell takes over and expands the path. However, this doesn't work on Windows, and so is not portable. This is technically a bug in the test but people may be using this in the wild... Do we want to fix it by adding ** support for Windows?
The text was updated successfully, but these errors were encountered:
cbednarski
changed the title
Incorrect use of glob (broken on Windows)
Add explicit support for ** in glob
Jun 9, 2015
cbednarski
changed the title
Add explicit support for ** in glob
Add explicit support for ** in glob
Jun 9, 2015
Glob in Go doesn’t actually work the way it’s tested here:
This test passes in *nix because (I think) the underlying shell takes over and expands the path. However, this doesn't work on Windows, and so is not portable. This is technically a bug in the test but people may be using this in the wild... Do we want to fix it by adding
**
support for Windows?The text was updated successfully, but these errors were encountered: