Bug 847918 - `install` command for mach. r=gps

This commit is contained in:
Paul Adenot 2013-03-05 17:27:37 +01:00
Родитель 07f1711dbc
Коммит 8f7fa73990
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -310,6 +310,14 @@ class Package(MachCommandBase):
def package(self):
return self._run_make(directory=".", target='package', ensure_exit_code=False)
@CommandProvider
class Install(MachCommandBase):
"""Install a package."""
@Command('install', help='Install the package on the machine, or on a device.')
def install(self):
return self._run_make(directory=".", target='install', ensure_exit_code=False)
@CommandProvider
class Buildsymbols(MachCommandBase):
"""Produce a package of debug symbols suitable for use with Breakpad."""