Fixes #262 normalize artifact paths

This commit is contained in:
Nick Cipollo
2022-10-04 08:08:09 -04:00
parent 889eb279f8
commit f3ea29dca7
3 changed files with 22 additions and 0 deletions

7
src/PathNormalizer.ts Normal file
View File

@@ -0,0 +1,7 @@
import path from "path";
export class PathNormalizer {
static normalizePath(pathString: string): string {
return pathString.split(path.sep).join("/")
}
}