1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal
2020-12-12 10:05:42 +00:00
parent d62dcb6b01
commit 8ef5e3201c
7 changed files with 8 additions and 10 deletions

View File

@@ -334,6 +334,6 @@ def get_ndk_version(path):
key_value = list(map(lambda x: x.strip(), line.split("=")))
if key_value[0] == "Pkg.Revision":
return key_value[1]
except:
except Exception:
print("Could not read source prop file '%s'" % prop_file_path)
return None