| Index: scripts/slave/recipes/gatekeeper.py
|
| diff --git a/scripts/slave/recipes/gatekeeper.py b/scripts/slave/recipes/gatekeeper.py
|
| index ef2ad7a705525195f70f46525a86ad1c6409afb8..92060c34a6ee589244c5093e6685609ed20adaf6 100644
|
| --- a/scripts/slave/recipes/gatekeeper.py
|
| +++ b/scripts/slave/recipes/gatekeeper.py
|
| @@ -4,11 +4,9 @@
|
|
|
| """Specifies how to launch the gatekeeper."""
|
|
|
| -def GetFactoryProperties(api, _factory_properties, build_properties):
|
| +def GetSteps(api, _factory_properties, build_properties):
|
| steps = api.Steps(build_properties)
|
| - return {
|
| - 'steps': [
|
| - steps.step('gatekeeper_launch',
|
| - [api.build_path('scripts', 'slave', 'gatekeeper_launch.py')])
|
| - ]
|
| - }
|
| + return [
|
| + steps.step('gatekeeper_launch',
|
| + [api.build_path('scripts', 'slave', 'gatekeeper_launch.py')])
|
| + ]
|
|
|