| Index: tools/cr/cr/commands/install.py
|
| diff --git a/tools/cr/cr/commands/install.py b/tools/cr/cr/commands/install.py
|
| index 51a02b36eea620866b4b67226d4e912f5135eb1d..20e1dff2b4691078f1316df6bd7cded086f8abd4 100644
|
| --- a/tools/cr/cr/commands/install.py
|
| +++ b/tools/cr/cr/commands/install.py
|
| @@ -29,8 +29,8 @@ class InstallCommand(cr.Command):
|
| self.ConsumeArgs(parser, 'the installer')
|
| return parser
|
|
|
| - def Run(self, context):
|
| - targets = cr.Target.GetTargets(context)
|
| - if not cr.Installer.Skipping(context):
|
| - cr.Builder.Build(context, targets, [])
|
| - cr.Installer.Reinstall(context, targets, context.remains)
|
| + def Run(self):
|
| + targets = cr.Target.GetTargets()
|
| + if not cr.Installer.Skipping():
|
| + cr.Builder.Build(targets, [])
|
| + cr.Installer.Reinstall(targets, cr.context.remains)
|
|
|