Skip to content

Commit

Permalink
minor tweak in removing stale so files
Browse files Browse the repository at this point in the history
  • Loading branch information
tcaduser committed Sep 9, 2023
1 parent 4f075a4 commit 4cd413a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kivy_ios/tools/cpplink
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ def delete_so_files(output):
'''
try:
remove(output)
except FileNotFoundError:
pass

try:
remove(output + '.libs')
except FileNotFoundError:
pass
Expand Down

0 comments on commit 4cd413a

Please sign in to comment.