Skip to content

Commit 73773a7

Browse files
author
An Phan
committed
Properly handle forward slashes in group names
1 parent b5a8b40 commit 73773a7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/lib/parser.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ function parseDir(filename) {
3636
return parseDir(`${filename}/${child}`)
3737
})
3838

39+
// An ugly hardcode here to make sure forward slashes are treated properly
40+
info.name = info.name.replace(/:/g, '/')
41+
3942
return info
4043
}
4144

0 commit comments

Comments
 (0)