From 453eaa50b40e4cccb40c3b63673e5e1bc33de58a Mon Sep 17 00:00:00 2001 From: Kim-Adeline Miguel Date: Tue, 29 Oct 2019 11:18:34 -0700 Subject: [PATCH] Fix gulp install python libs commands with python --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b57071c8b46f..9fcfe4e92ece 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -266,7 +266,7 @@ gulp.task('installPtvsdWheels', async () => { }); if (!success) { console.info("Failed to install new PTVSD wheels using 'python3', attempting to install using 'python'"); - await spawnAsync('python', args.concat(requirement)).catch(ex => console.error("Failed to install PTVSD 5.0 wheels using 'python'", ex)); + await spawnAsync('python', args).catch(ex => console.error("Failed to install PTVSD 5.0 wheels using 'python'", ex)); } }); @@ -283,7 +283,7 @@ gulp.task('installOldPtvsd', async () => { }); if (!success) { console.info("Failed to install PTVSD using 'python3', attempting to install using 'python'"); - await spawnAsync('python', args.concat(requirement)).catch(ex => console.error("Failed to install PTVSD using 'python'", ex)); + await spawnAsync('python', args).catch(ex => console.error("Failed to install PTVSD using 'python'", ex)); } });