| Index: tools/push-to-trunk/chromium_roll.py
|
| diff --git a/tools/push-to-trunk/chromium_roll.py b/tools/push-to-trunk/chromium_roll.py
|
| index ef9b8bf38b920d684b464ba9d868c022b4cd80be..adae11d0498e05ed1dee13ff03026288a9daf71c 100755
|
| --- a/tools/push-to-trunk/chromium_roll.py
|
| +++ b/tools/push-to-trunk/chromium_roll.py
|
| @@ -30,7 +30,8 @@ class DetectLastPush(Step):
|
| MESSAGE = "Detect commit ID of last push to trunk."
|
|
|
| def RunStep(self):
|
| - self["last_push"] = self._options.last_push or self.FindLastTrunkPush()
|
| + self["last_push"] = self._options.last_push or self.FindLastTrunkPush(
|
| + include_patches=True)
|
| self["trunk_revision"] = self.GitSVNFindSVNRev(self["last_push"])
|
| self["push_title"] = self.GitLog(n=1, format="%s",
|
| git_hash=self["last_push"])
|
|
|