diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-26 20:26:56 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-26 20:27:03 -0400 |
commit | 3bee2f16048b89d9906a0e38d029b9b4b727b6a3 (patch) | |
tree | 681983340dc2c467a4e0143687d7f7e231b7f4d9 | |
parent | c3d81a490224905e3d20dc15ad3e7bd3facf9ed7 (diff) | |
download | rneovim-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-x | ci/install.sh | 2 |
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 |