Skip to content

Fix gulp install python libs commands with python #8282

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
});

Expand All @@ -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));
}
});

Expand Down