summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-03 13:00:19 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-03 18:55:46 +0200
commit9b55bb2f497a693112bafcf82bf05111b02cc251 (patch)
tree02627e92ef9af8e9c1c7dc16ff397506cecc7a46
parent6b77e1af991d8ae7cd5050825b8884cb049c1f81 (diff)
downloadqutebrowser-9b55bb2f497a693112bafcf82bf05111b02cc251.tar.gz
qutebrowser-9b55bb2f497a693112bafcf82bf05111b02cc251.zip
ci: Use python instead of python3 in script
We only have python.exe on Windows, and after the setup-python action, "python" hopefully is the correct Python 3 executable.
-rw-r--r--scripts/dev/ci/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/ci/install.sh b/scripts/dev/ci/install.sh
index da4195c3f..e0826ae9e 100644
--- a/scripts/dev/ci/install.sh
+++ b/scripts/dev/ci/install.sh
@@ -21,7 +21,7 @@
set -e
pip_install() {
- python3 -m pip install "$@"
+ python -m pip install "$@"
}
testenv=$1