From 3bee2f16048b89d9906a0e38d029b9b4b727b6a3 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 26 Oct 2019 20:26:56 -0400 Subject: ci: use python3 for flake8 'make pylint' fails if flake8 runs on python2. --- ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci/install.sh') 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 -- cgit