Bug 847918 - install command for mach. r=gps

This commit is contained in:
Paul Adenot 2013-03-05 17:27:37 +01:00
parent 2402979f16
commit c32954c4a7

View File

@ -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."""