summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-10-14 00:54:39 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2019-10-14 00:54:39 -0700
commitcde74abe190c9beea4515a95ffa963750e1196cf (patch)
tree77aa74237a4595f44fca7c69627d004969c31e08 /scripts
parentbb9d0d77efad76a49f9ec07489d9b163aba833f5 (diff)
downloadisort-cde74abe190c9beea4515a95ffa963750e1196cf.tar.gz
Fix version check
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lint.sh b/scripts/lint.sh
index 2878af31..9bc98878 100755
--- a/scripts/lint.sh
+++ b/scripts/lint.sh
@@ -3,7 +3,7 @@ set -euxo pipefail
pyversion=$(python3 -V 2>&1 | sed 's/.* \([0-9]\).\([0-9]\).*/\1\2/')
-if [[ "$pyversion" -lt "360" ]]
+if [[ "$pyversion" -lt "36" ]]
then
echo "WARNING: Some linters have been skipped. Run against 3.6+ for full set of linters to run against the project!"
else