aboutsummaryrefslogtreecommitdiff
path: root/test/lint/lint-python.sh
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-02 17:51:29 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-11-06 13:22:06 +0200
commit80c9e66ab84f8cecc2bf2eebf508a5aad8911246 (patch)
tree89a9597a26c10e9b8ea44f680e8c9c7cf432d5f2 /test/lint/lint-python.sh
parent2ad74b78c61697068be5d157785592c0c875a347 (diff)
downloadbitcoin-80c9e66ab84f8cecc2bf2eebf508a5aad8911246.tar.xz
build: Remove install command samples
test/README.md contains comprehensive install instructions.
Diffstat (limited to 'test/lint/lint-python.sh')
-rwxr-xr-xtest/lint/lint-python.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lint/lint-python.sh b/test/lint/lint-python.sh
index 3c82ec19e3..2b1a1d8fbc 100755
--- a/test/lint/lint-python.sh
+++ b/test/lint/lint-python.sh
@@ -82,10 +82,10 @@ enabled=(
)
if ! command -v flake8 > /dev/null; then
- echo "Skipping Python linting since flake8 is not installed. Install by running \"pip3 install flake8\""
+ echo "Skipping Python linting since flake8 is not installed."
exit 0
elif PYTHONWARNINGS="ignore" flake8 --version | grep -q "Python 2"; then
- echo "Skipping Python linting since flake8 is running under Python 2. Install the Python 3 version of flake8 by running \"pip3 install flake8\""
+ echo "Skipping Python linting since flake8 is running under Python 2. Install the Python 3 version of flake8."
exit 0
fi