From: rniwa@webkit.org Date: Sun, 26 May 2013 23:23:10 +0000 (+0000) Subject: Yet another WKR build fix. Sorry for the mess. It seems like I can't win today :( X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=d141b006d330af2b0c60735c2d267a1a41b79b7b Yet another WKR build fix. Sorry for the mess. It seems like I can't win today :( * Scripts/webkitpy/tool/commands/newcommitbot.py: (NewCommitBot.next_work_item): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@150726 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 72d8c27eb427..5eaa746f7c4a 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,10 @@ +2013-05-26 Ryosuke Niwa + + Yet another WKR build fix. Sorry for the mess. It seems like I can't win today :( + + * Scripts/webkitpy/tool/commands/newcommitbot.py: + (NewCommitBot.next_work_item): + 2013-05-26 Ryosuke Niwa WKR and webkitbot build fixes. diff --git a/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py b/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py index c0bb6fdddd7b..95857615874b 100644 --- a/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py +++ b/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py @@ -90,10 +90,7 @@ class NewCommitBot(AbstractQueue, StepSequenceErrorHandler): commit_log = self._tool.executive.run_command(['svn', 'log', 'https://svn.webkit.org/repository/webkit/trunk', '--non-interactive', '--revision', self._tool.scm().strip_r_from_svn_revision(new_revision)]) except ScriptError: - continue - - if commit_log.find('No such revision') >= 0: - continue + break self._last_svn_revision = new_revision if self._is_empty_log(commit_log):