mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 820179 - Mach command for packaging. r=gps
This commit is contained in:
parent
8efbbfddf2
commit
29e53949c6
@ -129,3 +129,10 @@ class Warnings(MachCommandBase):
|
||||
print('%s:%d [%s] %s' % (filename, warning['line'],
|
||||
warning['flag'], warning['message']))
|
||||
|
||||
@CommandProvider
|
||||
class Package(MachCommandBase):
|
||||
"""Package the built product for distribution."""
|
||||
|
||||
@Command('package', help='Package the built product for distribution as an APK, DMG, etc.')
|
||||
def package(self):
|
||||
return self._run_make(directory=".", target='package', ensure_exit_code=False)
|
||||
|
Loading…
Reference in New Issue
Block a user