Index: tools/push-to-trunk/auto_roll.py |
diff --git a/tools/push-to-trunk/auto_roll.py b/tools/push-to-trunk/auto_roll.py |
index 9b28938cc6ce019545e90b29c881d60034722c04..ebe2397525d99ee05f1a90645ff216d0598fdfd6 100755 |
--- a/tools/push-to-trunk/auto_roll.py |
+++ b/tools/push-to-trunk/auto_roll.py |
@@ -142,7 +142,6 @@ class PushToTrunk(Step): |
self._side_effect_handler.Call( |
P(push_to_trunk.CONFIG, self._side_effect_handler).Run, |
["-a", self._options.author, |
- "-c", self._options.chromium, |
"-r", self._options.reviewer, |
"-f"]) |
finally: |
@@ -154,9 +153,8 @@ class PushToTrunk(Step): |
class AutoRoll(ScriptsBase): |
def _PrepareOptions(self, parser): |
- parser.add_argument("-c", "--chromium", required=True, |
- help=("The path to your Chromium src/ " |
- "directory to automate the V8 roll.")) |
+ parser.add_argument("-c", "--chromium", |
+ help=("Deprecated.")) |
parser.add_argument("-p", "--push", |
help="Push to trunk. Dry run if unspecified.", |
default=False, action="store_true") |