aboutsummaryrefslogtreecommitdiff
path: root/bin/pylint.sh
diff options
context:
space:
mode:
authorCamil Staps2017-02-20 10:06:38 +0100
committerCamil Staps2017-02-20 10:06:38 +0100
commit73ae3a47a410eb2db9c3c776c0252e1feaeb2d7e (patch)
tree4835551f5d769ede433ed390d3cfc2406975480c /bin/pylint.sh
parentCloogle stats in status bar (diff)
Reorganise binaries
Diffstat (limited to 'bin/pylint.sh')
-rwxr-xr-xbin/pylint.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/pylint.sh b/bin/pylint.sh
deleted file mode 100755
index 546f8c8..0000000
--- a/bin/pylint.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-PYMAJOR=$1
-
-if [ "$1" = "--version" ]
-then
- pylint --version
- return
-fi
-
-if [[ "$PYMAJOR" != "2" ]] && [[ "$PYMAJOR" != "3" ]]
-then
- PYMAJOR=2
- grep '#!.*python3' "${@: -1}" >/dev/null && PYMAJOR=3
-fi
-
-echo "Using python$PYMAJOR"
-
-/usr/bin/env "python$PYMAJOR" -m pylint "${@:2}"
-