Update bdistapk.py
This commit is contained in:
parent
00f31d5067
commit
631ca5e847
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ class BdistAPK(Command):
|
|||
exit(1)
|
||||
if len(main_py_dirs) > 1:
|
||||
print('WARNING: Multiple main.py dirs found, using the shortest path')
|
||||
main_py_dirs = sorted(main_py_dirs, key=lambda j: len(split(j)))
|
||||
main_py_dirs.sort(key=lambda j: len(split(j)))
|
||||
|
||||
if not argv_contains('--launcher'):
|
||||
sys.argv.append('--private={}'.format(
|
||||
|
@ -145,4 +145,4 @@ def _set_user_options():
|
|||
|
||||
BdistAPK.user_options = user_options
|
||||
|
||||
_set_user_options()
|
||||
_set_user_options()
|
||||
|
|
Loading…
Add table
Reference in a new issue