From 97432e7e9e9a1f5aeaf5ea86bf4084379b2531c6 Mon Sep 17 00:00:00 2001 From: Chris Sosa Date: Mon, 13 Dec 2010 16:20:51 -0800 Subject: [PATCH] Don't push manifests for chrome pfq. Change-Id: I252616725936b2c471026d39d06c3fbb2fa1ed65 BUG=chromium-os:8693 TEST=Ran with chrome_rev=tot Review URL: http://codereview.chromium.org/5744003 --- bin/cbuildbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py index b5c4b8b151..076487fb20 100755 --- a/bin/cbuildbot.py +++ b/bin/cbuildbot.py @@ -722,7 +722,8 @@ def main(): if not os.path.isdir(path): Die('Missing overlay: %s' % path) - _DumpManifest(buildroot, options.url) + if not options.chrome_rev: + _DumpManifest(buildroot, options.url) if not os.path.isdir(chroot_path): _MakeChroot(buildroot)