Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 4e0bb40

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)