Skip to content

Commit

Permalink
Merge pull request #2447 from obfusk/patch-21
Browse files Browse the repository at this point in the history
build.py: also clean() tarfile directory entries
  • Loading branch information
AndreMiras authored Apr 8, 2021
2 parents 6ab4bda + 4bbbb1c commit bf76add
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pythonforandroid/bootstraps/common/build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def clean(tinfo):
dirs.append(d)
tinfo = tarfile.TarInfo(d)
tinfo.type = tarfile.DIRTYPE
clean(tinfo)
tf.addfile(tinfo)

# put the file
Expand Down

0 comments on commit bf76add

Please sign in to comment.