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

Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal
2020-12-12 10:10:23 +00:00
parent 1cd0d711c5
commit e21adf2bc6
6 changed files with 7 additions and 7 deletions

View File

@@ -484,13 +484,13 @@ if selected_platform in platform_list:
doc_path = config.get_doc_path()
for c in doc_classes:
env.doc_class_path[c] = path + "/" + doc_path
except:
except Exception:
pass
# Get icon paths (if present)
try:
icons_path = config.get_icons_path()
env.module_icons_paths.append(path + "/" + icons_path)
except:
except Exception:
# Default path for module icons
env.module_icons_paths.append(path + "/" + "icons")
modules_enabled[name] = path