We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1da72 commit ef9e75bCopy full SHA for ef9e75b
pythonforandroid/bdistapk.py
@@ -51,7 +51,7 @@ def finalize_options(self):
51
# provide them
52
if not argv_contains('--name'):
53
name = self.distribution.get_name()
54
- sys.argv.append('--name={}'.format(name))
+ sys.argv.append('--name="{}"'.format(name))
55
self.name = name
56
57
if not argv_contains('--package'):
pythonforandroid/bootstraps/sdl2/build/build.py
@@ -457,6 +457,9 @@ def parse_args(args=None):
457
args = ap.parse_args(args)
458
args.ignore_path = []
459
460
+ if args.name and args.name[0] == '"' and args.name[-1] == '"':
461
+ args.name = args.name[1:-1]
462
+
463
if args.billing_pubkey:
464
print('Billing not yet supported in sdl2 bootstrap!')
465
exit(1)
0 commit comments