mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
deploy-ng:Fix parsing bdist_apps.installers from setup.cfg
This commit is contained in:
parent
b6f2919420
commit
d9885e4f1b
@ -1028,7 +1028,10 @@ class bdist_apps(setuptools.Command):
|
|||||||
def finalize_options(self):
|
def finalize_options(self):
|
||||||
# We need to massage the inputs a bit in case they came from a
|
# We need to massage the inputs a bit in case they came from a
|
||||||
# setup.cfg file.
|
# setup.cfg file.
|
||||||
self.installers = _parse_dict(self.installers)
|
self.installers = {
|
||||||
|
key: _parse_list(value)
|
||||||
|
for key, value in _parse_dict(self.installers).items()
|
||||||
|
}
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
build_cmd = self.get_finalized_command('build_apps')
|
build_cmd = self.get_finalized_command('build_apps')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user