diff options
Diffstat (limited to 'tools/lint.py')
-rwxr-xr-x | tools/lint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lint.py b/tools/lint.py index 92e58dbc2..bd65da09e 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -16,7 +16,7 @@ eslint = os.path.join(third_party_path, "node_modules", "eslint", "bin", os.chdir(root_path) run([ - "python", cpplint, "--filter=-build/include_subdir", + sys.executable, cpplint, "--filter=-build/include_subdir", "--repository=core/libdeno", "--extensions=cc,h", "--recursive", "core" ]) |