From d936c49d532eaf6c4a5b8981765066cbc0b5a829 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 14 Sep 2019 15:01:28 +0200 Subject: tools: consistently use 'sys.executable' instead of 'python' (#2950) --- tools/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/lint.py') 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" ]) -- cgit v1.2.3