Skip to content

Commit 54bf659

Browse files
ross-spencerrichardlehane
authored andcommitted
Enable glob functionality on Windows (#212)
1 parent 22dfa35 commit 54bf659

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

cmd/sf/sf.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import (
2323
"io"
2424
"log"
2525
"os"
26+
"path/filepath"
2627
"sync"
2728
"time"
2829

@@ -491,7 +492,13 @@ func main() {
491492
ctxts <- ctx
492493
identifyRdr(os.Stdin, ctx, ctxts, getCtx)
493494
} else {
494-
err = identify(ctxts, v, "", *coe, *nr, d, getCtx)
495+
globs, err := filepath.Glob(v)
496+
if err != nil {
497+
log.Fatalln(fmt.Sprintf("[FATAL] bad glob pattern: %e", err))
498+
}
499+
for _, glob := range globs {
500+
err = identify(ctxts, glob, "", *coe, *nr, d, getCtx)
501+
}
495502
}
496503
if err != nil {
497504
break

0 commit comments

Comments
 (0)