diff options
author | Camil Staps | 2017-02-20 10:06:38 +0100 |
---|---|---|
committer | Camil Staps | 2017-02-20 10:06:38 +0100 |
commit | 73ae3a47a410eb2db9c3c776c0252e1feaeb2d7e (patch) | |
tree | 4835551f5d769ede433ed390d3cfc2406975480c /bin/pylint.sh | |
parent | Cloogle stats in status bar (diff) |
Reorganise binaries
Diffstat (limited to 'bin/pylint.sh')
-rwxr-xr-x | bin/pylint.sh | 19 |
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}" - |