aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/check_generated_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/check_generated_files.py')
-rw-r--r--infra/bots/recipes/check_generated_files.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/infra/bots/recipes/check_generated_files.py b/infra/bots/recipes/check_generated_files.py
index fc4f79b02a..c32477b108 100644
--- a/infra/bots/recipes/check_generated_files.py
+++ b/infra/bots/recipes/check_generated_files.py
@@ -7,6 +7,7 @@
DEPS = [
'recipe_engine/context',
+ 'recipe_engine/file',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/python',
@@ -21,7 +22,10 @@ DEPS = [
def RunSteps(api):
# Checkout, compile, etc.
- api.core.setup()
+ api.vars.setup()
+ api.core.checkout_bot_update()
+ api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
+ api.flavor.setup()
cwd = api.path['checkout']