Skip to content

Commit 633eebc

Browse files
committed
attempt to fix #184
1 parent d50b7f8 commit 633eebc

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
@@ -275,7 +275,7 @@ function installRequirements(targetFolder, serverless, options) {
275275
*/
276276
function dockerPathForWin(options, path) {
277277
if (process.platform === 'win32' && options.dockerizePip) {
278-
return path.replace(/\\/g, '/');
278+
return `"${path.replace(/\\/g, '/')}"`;
279279
}
280280
return quote_single(path);
281281
}

0 commit comments

Comments
 (0)