22

I am trying to achieve a glob sync pattern that allows me to meet the following criteria, but unfortunately, im having a hard time working out why the pattern isn't working.

Glob Pattern

glob.sync("./src/handlebar/{a, b, c, d}/**/*.hbs")

File Path Patterns

src/handlebar/b/a/header.hbs
src/handlebar/b/header.hbs
src/handlebar/a/head.hbs [MATCH]
src/handlebar/a/foot.hbs [MATCH]
src/handlebar/c/a/something.hbs
src/handlebar/d/a/button.hbs

What am i doing wrong?

jagmitg
  • 4,236
  • 7
  • 25
  • 59

1 Answers1

33

Spaces are the problem, try:

glob.sync("./src/handlebar/{a,b,c,d}/**/*.hbs")
m1ch4ls
  • 3,317
  • 18
  • 31