Index: Tools/Scripts/webkitpy/tool/commands/flakytests.py |
diff --git a/Tools/Scripts/webkitpy/tool/commands/flakytests.py b/Tools/Scripts/webkitpy/tool/commands/flakytests.py |
index 852f8f7768b3fbe5cf28fd2efb0203a1afc553f2..0b3929adb89387131b82c106abdd93f6f3226713 100644 |
--- a/Tools/Scripts/webkitpy/tool/commands/flakytests.py |
+++ b/Tools/Scripts/webkitpy/tool/commands/flakytests.py |
@@ -98,11 +98,11 @@ class FlakyTests(AbstractDeclarativeCommand): |
commit_message = self.COMMIT_MESSAGE % ','.join(reviewer_emails) |
git_cmd = ['git', 'commit', '-m', commit_message, |
tool.filesystem.join(tool.scm().checkout_root, flaky_tests_path)] |
- tool.executive.run_and_throw_if_fail(git_cmd) |
+ tool.executive.run_command(git_cmd) |
git_cmd = ['git', 'cl', 'upload', '--send-mail', '-f', |
'--cc', ','.join(self.ALWAYS_CC)] |
- tool.executive.run_and_throw_if_fail(git_cmd) |
+ tool.executive.run_command(git_cmd) |
def execute(self, options, args, tool): |
factory = self.expectations_factory() |