Skip to content

Commit e1c5d8b

Browse files
avdvylecornec
authored andcommitted
Use posix path
1 parent 9a38604 commit e1c5d8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

haskell/private/pkgdb_to_bzl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import package_configuration
2121

2222
def match_glob(root_dir, pattern):
23-
return sorted([str(p.relative_to(root_dir)) for p in Path(root_dir).glob(pattern)])
23+
return sorted([p.relative_to(root_dir).as_posix() for p in Path(root_dir).glob(pattern)])
2424

2525
if len(sys.argv) == 3:
2626
repo_dir = "external/" + sys.argv[1]

0 commit comments

Comments
 (0)