| Index: scripts/slave/recipe_modules/cipd/example.py
|
| diff --git a/scripts/slave/recipe_modules/cipd/example.py b/scripts/slave/recipe_modules/cipd/example.py
|
| index 2a48fe878a42f4ca66561bd36aa12e9439dd8c6d..9917471a7a7d3bcaee5ab93c34edd712d10c76a6 100644
|
| --- a/scripts/slave/recipe_modules/cipd/example.py
|
| +++ b/scripts/slave/recipe_modules/cipd/example.py
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| DEPS = [
|
| + 'depot_tools/infra_paths',
|
| 'file',
|
| 'recipe_engine/path',
|
| 'recipe_engine/platform',
|
| @@ -21,7 +22,7 @@ def RunSteps(api):
|
| package_instance_id = '7f751b2237df2fdf3c1405be00590fefffbaea2d'
|
| packages = {package_name: package_instance_id}
|
|
|
| - cipd_root = api.path['slave_build'].join('packages')
|
| + cipd_root = api.infra_paths['slave_build'].join('packages')
|
| # Some packages don't require credentials to be installed or queried.
|
| api.cipd.ensure(cipd_root, packages)
|
| step = api.cipd.search(package_name, tag='git_revision:40-chars-long-hash')
|
|
|