mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
[Mach] Add stage command to execute stage-package
This commit is contained in:
parent
4749ba0047
commit
ac1fe973f4
1 changed files with 8 additions and 0 deletions
|
|
@ -1070,6 +1070,14 @@ class ClangCommands(MachCommandBase):
|
|||
print('-I%s/ipc/glue' % self.topsrcdir)
|
||||
print('-I%s/ipc/ipdl/_ipdlheaders' % self.topobjdir)
|
||||
|
||||
@CommandProvider
|
||||
class Stage_Package(MachCommandBase):
|
||||
"""Stage the built product for distribution but do not create an archive."""
|
||||
|
||||
@Command('stage', category='post-build',
|
||||
description='Stage the built product for distribution but do not create an archive.')
|
||||
def stage_package(self):
|
||||
return self._run_make(directory=".", target='stage-package', ensure_exit_code=False)
|
||||
|
||||
@CommandProvider
|
||||
class Package(MachCommandBase):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue