From 633eebca7d128738d578b6b54d38b46fdc6eb0f4 Mon Sep 17 00:00:00 2001 From: Daniel Schep Date: Wed, 19 Sep 2018 12:00:41 -0400 Subject: [PATCH] attempt to fix #184 --- lib/pip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pip.js b/lib/pip.js index 39fdb5ab..e1557216 100644 --- a/lib/pip.js +++ b/lib/pip.js @@ -275,7 +275,7 @@ function installRequirements(targetFolder, serverless, options) { */ function dockerPathForWin(options, path) { if (process.platform === 'win32' && options.dockerizePip) { - return path.replace(/\\/g, '/'); + return `"${path.replace(/\\/g, '/')}"`; } return quote_single(path); }