mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
Make the tarball generation tool handle spaces in filenames
<insert opinion on such filenames here> Change-Id: Ie1b5fac97eea93c9ac934ffb8bf6c0d9a0559339
This commit is contained in:
parent
9ba57400c4
commit
e25a861df2
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ def get_lstree(repo, start, filterlist=[]):
|
|||
return objects
|
||||
|
||||
for line in cmdout[0].decode().split('\n'):
|
||||
regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(\S+)',
|
||||
regex = re.findall(b'([0-9]+)\s+([a-z]+)\s+([0-9a-f]+)\s+(.*)',
|
||||
line.encode())
|
||||
for rf in regex:
|
||||
# filter
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue