chrisha@google.com | 267d659 | 2012-06-19 19:23:31 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
Mike Frysinger | 5329779 | 2019-08-20 21:32:33 +0000 | [diff] [blame] | 6 | # pylint -- a shell wrapper for pylint. |
chrisha@google.com | 267d659 | 2012-06-19 19:23:31 +0000 | [diff] [blame] | 7 | |
| 8 | base_dir=$(dirname "$0") |
Mike Frysinger | 5329779 | 2019-08-20 21:32:33 +0000 | [diff] [blame] | 9 | PYTHONDONTWRITEBYTECODE=1 exec "$base_dir/pylint-1.5" "$@" |