diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-14 11:19:12 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-14 11:19:12 -0400 |
commit | 6b613117206d1145b86d49e059b49d4b8578f82c (patch) | |
tree | 65215aa3a7fd8e155f58b3dae35276e5e204d156 | |
parent | 49e146871e23c27ece6704144248e192c0d1a0d4 (diff) | |
download | python-coveragepy-git-6b613117206d1145b86d49e059b49d4b8578f82c.tar.gz |
Maybe we can just run Python directly?
-rw-r--r-- | ci/install.ps1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/install.ps1 b/ci/install.ps1 index 03e7866e..2ece08df 100644 --- a/ci/install.ps1 +++ b/ci/install.ps1 @@ -166,7 +166,8 @@ function InstallPip ($python_home) { $webclient = New-Object System.Net.WebClient $webclient.DownloadFile($GET_PIP_URL, $GET_PIP_PATH) Write-Host "Executing:" $python_path $RUN_GET_PIP_PATH - Start-Process -FilePath "$python_path" -ArgumentList "$RUN_GET_PIP_PATH" -Wait -Passthru + #Start-Process -FilePath "$python_path" -ArgumentList "$RUN_GET_PIP_PATH" -Wait -Passthru + $python_path $RUN_GET_PIP_PATH -v } else { Write-Host "pip already installed." } |