mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 847918 - install
command for mach. r=gps
This commit is contained in:
parent
07f1711dbc
commit
8f7fa73990
@ -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."""
|
||||
|
Loading…
Reference in New Issue
Block a user