Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2242)

Unified Diff: Tools/Scripts/webkitpy/common/system/executive.py

Issue 1253013003: Remove all perl scripts from Tools/Scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove the python code to invoke Perl \o/ Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/Scripts/webkitpy/common/system/executive.py
diff --git a/Tools/Scripts/webkitpy/common/system/executive.py b/Tools/Scripts/webkitpy/common/system/executive.py
index 5a1d9f6fb73994b0296e42d7cc1a0002d67d49b7..dd1bc6a5e335dbf6eb9288e3acc7bc7074650786 100644
--- a/Tools/Scripts/webkitpy/common/system/executive.py
+++ b/Tools/Scripts/webkitpy/common/system/executive.py
@@ -130,8 +130,6 @@ class Executive(object):
return None
if first_line.find('python') > -1:
return sys.executable
- if first_line.find('perl') > -1:
- return 'perl'
if first_line.find('ruby') > -1:
return 'ruby'
return None

Powered by Google App Engine
This is Rietveld 408576698