summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-14 11:27:51 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-14 11:27:51 -0400
commit39689cfba30174bc1ba4b5f4f7ebd10b107e120d (patch)
treeaff0b2345324be45bfcf91ec3711f12d5d51964d /ci
parent6b613117206d1145b86d49e059b49d4b8578f82c (diff)
downloadpython-coveragepy-git-39689cfba30174bc1ba4b5f4f7ebd10b107e120d.tar.gz
Learning Powershell one SO post at a time...
Diffstat (limited to 'ci')
-rw-r--r--ci/install.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/install.ps1 b/ci/install.ps1
index 2ece08df..330005e6 100644
--- a/ci/install.ps1
+++ b/ci/install.ps1
@@ -167,7 +167,7 @@ function InstallPip ($python_home) {
$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
- $python_path $RUN_GET_PIP_PATH -v
+ & $python_path $RUN_GET_PIP_PATH -v
} else {
Write-Host "pip already installed."
}