Index: tools/release/auto_roll.py |
diff --git a/tools/release/auto_roll.py b/tools/release/auto_roll.py |
index f7692cf6f9775681a9afdb6c13d82c60bb874044..ed2ab21f0fbe4939762468f08826e193aba59f9f 100755 |
--- a/tools/release/auto_roll.py |
+++ b/tools/release/auto_roll.py |
@@ -48,6 +48,9 @@ class DetectLastRoll(Step): |
max_age=self._options.max_age * DAY_IN_SECONDS) |
assert revisions, "Didn't find any recent release." |
+ # Update Chromium checkout before DEPS check to fix possible race-condition |
+ self.GitPull(cwd=self._options.chromium) |
+ |
# Interpret the DEPS file to retrieve the v8 revision. |
# TODO(machenbach): This should be part or the roll-deps api of |
# depot_tools. |