Merge branch 'osx_to_macos' of https://github.com/Luflosi/kitty

This commit is contained in:
Kovid Goyal
2019-01-28 08:44:37 +05:30
4 changed files with 6 additions and 6 deletions

View File

@@ -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':