mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-28 07:48:37 -04:00
dist: glob pattern must be lowercase as it is compared to lowercase filenames
Closes #832
This commit is contained in:
parent
bd5841781c
commit
f09ee92582
2
direct/src/dist/commands.py
vendored
2
direct/src/dist/commands.py
vendored
@ -835,7 +835,7 @@ class build_apps(setuptools.Command):
|
||||
whlfile = self._get_zip_file(whl)
|
||||
filenames = whlfile.namelist()
|
||||
for source_pattern, target_dir, flags in datadesc:
|
||||
srcglob = p3d.GlobPattern(source_pattern)
|
||||
srcglob = p3d.GlobPattern(source_pattern.lower())
|
||||
source_dir = os.path.dirname(source_pattern)
|
||||
# Relocate the target dir to the build directory.
|
||||
target_dir = target_dir.replace('/', os.sep)
|
||||
|
Loading…
x
Reference in New Issue
Block a user