diff options
Diffstat (limited to 'infra/bots/recipe_modules/vars')
-rw-r--r-- | infra/bots/recipe_modules/vars/api.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py index da11651802..b5f39834f4 100644 --- a/infra/bots/recipe_modules/vars/api.py +++ b/infra/bots/recipe_modules/vars/api.py @@ -44,7 +44,8 @@ class SkiaVarsApi(recipe_api.RecipeApi): '-CT_' in self.builder_name or 'Presubmit' in self.builder_name or 'InfraTests' in self.builder_name or - self.builder_name == "Housekeeper-PerCommit") + self.builder_name == "Housekeeper-PerCommit" or + 'CheckGeneratedFiles' in self.builder_name) if self.persistent_checkout: if 'Win' in self.builder_name: self.checkout_root = self.make_path('C:\\', 'b', 'work') |