From 4cd413a40145f2e6b2008ecc748d75ddc2a015db Mon Sep 17 00:00:00 2001 From: "Juan E. Sanchez" Date: Sat, 9 Sep 2023 16:17:01 -0500 Subject: [PATCH] minor tweak in removing stale so files --- kivy_ios/tools/cpplink | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kivy_ios/tools/cpplink b/kivy_ios/tools/cpplink index 3278f9f3..a3cd88a9 100755 --- a/kivy_ios/tools/cpplink +++ b/kivy_ios/tools/cpplink @@ -121,6 +121,10 @@ def delete_so_files(output): ''' try: remove(output) + except FileNotFoundError: + pass + + try: remove(output + '.libs') except FileNotFoundError: pass