Skip to content

Commit 4e0bb40

Browse files
committed
Fix / -> \ replacement for windows. Closes #200
1 parent 5d8bbf8 commit 4e0bb40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ function installRequirements(
147147
*/
148148
function dockerPathForWin(options, path) {
149149
if (process.platform === 'win32' && options.dockerizePip) {
150-
return path.replace('\\', '/');
150+
return path.replace(/\\/g, '/');
151151
}
152152
return path;
153153
}

0 commit comments

Comments
 (0)