aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-10-26 20:26:56 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-10-26 20:27:03 -0400
commit3bee2f16048b89d9906a0e38d029b9b4b727b6a3 (patch)
tree681983340dc2c467a4e0143687d7f7e231b7f4d9
parentc3d81a490224905e3d20dc15ad3e7bd3facf9ed7 (diff)
downloadrneovim-3bee2f16048b89d9906a0e38d029b9b4b727b6a3.tar.gz
rneovim-3bee2f16048b89d9906a0e38d029b9b4b727b6a3.tar.bz2
rneovim-3bee2f16048b89d9906a0e38d029b9b4b727b6a3.zip
ci: use python3 for flake8
'make pylint' fails if flake8 runs on python2.
-rwxr-xr-xci/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 4a48a4f5d7..a6cd955da5 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -4,7 +4,7 @@ set -e
set -o pipefail
if [[ "${CI_TARGET}" == lint ]]; then
- python -m pip -q install --user --upgrade flake8
+ python3 -m pip -q install --user --upgrade flake8
exit
fi