mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-03 22:25:57 +00:00
Merge branch 'osx_to_macos' of https://github.com/Luflosi/kitty
This commit is contained in:
commit
4085fe2e8e
4 changed files with 6 additions and 6 deletions
4
setup.py
4
setup.py
|
|
@ -768,7 +768,7 @@ def option_parser(): # {{{
|
|||
'action',
|
||||
nargs='?',
|
||||
default='build',
|
||||
choices='build test linux-package kitty.app osx-bundle clean'.split(),
|
||||
choices='build test linux-package kitty.app macos-bundle osx-bundle clean'.split(),
|
||||
help='Action to perform (default is build)'
|
||||
)
|
||||
p.add_argument(
|
||||
|
|
@ -849,7 +849,7 @@ def main():
|
|||
if not os.path.exists(os.path.join(base, 'docs/_build/html')):
|
||||
run_tool(['make', 'docs'])
|
||||
package(args)
|
||||
elif args.action == 'osx-bundle':
|
||||
elif args.action in ('macos-bundle', 'osx-bundle'):
|
||||
build(args, native_optimizations=False)
|
||||
package(args, for_bundle=True)
|
||||
elif args.action == 'kitty.app':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue