Skip to content

Commit c118f10

Browse files
PatrickBuTaxdoodschep
authored andcommitted
fixed #252 - TEMPORARY CHERRY_PICKED FIX TO MAKE WINDOWS TESTS PASS
(cherry picked from commit 462385a)
1 parent 98de89c commit c118f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pip.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ function installRequirements(targetFolder, serverless, options) {
274274
* @return {string}
275275
*/
276276
function dockerPathForWin(options, path) {
277-
if (process.platform === 'win32' && options.dockerizePip) {
277+
if (process.platform === 'win32') {
278278
return `"${path.replace(/\\/g, '/')}"`;
279279
}
280280
return quote_single(path);

0 commit comments

Comments
 (0)