Skip to content

Commit 45d6b09

Browse files
committed
fix unixifyPaths
1 parent c639726 commit 45d6b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-tools/src/unixifyPaths.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
*/
88

99
export default function unixifyPaths(path: string): string {
10-
return path.replace(/^([a-zA-Z]+:|\.\/)/, '');
10+
return path.replace(/^([a-zA-Z]+:|\.\/)/, '').replace(/\\/g, '/');
1111
}

0 commit comments

Comments
 (0)