From 5718b2df4c4fbe61b437ed74a427cbb5e3e17118 Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 13 Sep 2016 07:20:47 -0700 Subject: [PATCH] I missed an infra_step, pushing directories. NOTREECHECKS=true BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2337793003 Review-Url: https://codereview.chromium.org/2337793003 --- infra/bots/recipe_modules/flavor/gn_android_flavor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/bots/recipe_modules/flavor/gn_android_flavor.py b/infra/bots/recipe_modules/flavor/gn_android_flavor.py index 84e98d185f..85ab3732d5 100644 --- a/infra/bots/recipe_modules/flavor/gn_android_flavor.py +++ b/infra/bots/recipe_modules/flavor/gn_android_flavor.py @@ -118,7 +118,7 @@ class GNAndroidFlavorUtils(default_flavor.DefaultFlavorUtils): subprocess.check_call(['adb', 'push', os.path.realpath(os.path.join(host, p, f)), os.path.join(device, p, f)]) - """, args=[host, device], cwd=self.m.vars.skia_dir) + """, args=[host, device], cwd=self.m.vars.skia_dir, infra_step=True) def copy_directory_contents_to_host(self, device, host): self._adb('pull %s %s' % (device, host), 'pull', device, host)