| Index: scripts/slave/recipes/flutter/engine.py
|
| diff --git a/scripts/slave/recipes/flutter/engine.py b/scripts/slave/recipes/flutter/engine.py
|
| index c1f94023b093de99f2121167d356b40ff97a9f6f..75415aaa8bca86a3f1e904c131b18c5f982b4773 100644
|
| --- a/scripts/slave/recipes/flutter/engine.py
|
| +++ b/scripts/slave/recipes/flutter/engine.py
|
| @@ -7,6 +7,7 @@ import contextlib
|
| DEPS = [
|
| 'depot_tools/bot_update',
|
| 'depot_tools/gclient',
|
| + 'depot_tools/infra_paths',
|
| 'file',
|
| 'gsutil',
|
| 'recipe_engine/path',
|
| @@ -232,7 +233,7 @@ def GetCheckout(api):
|
| def RunSteps(api):
|
| # buildbot sets 'clobber' to the empty string which is falsey, check with 'in'
|
| if 'clobber' in api.properties:
|
| - api.file.rmcontents('everything', api.path['slave_build'])
|
| + api.file.rmcontents('everything', api.infra_paths['slave_build'])
|
|
|
| GetCheckout(api)
|
|
|
|
|