|
|
|
@ -211,8 +211,11 @@ def update_libraries(config):
|
|
|
|
|
logger.info("")
|
|
|
|
|
logger.separator(f"{library.name} Library")
|
|
|
|
|
|
|
|
|
|
if config.library_first and library.library_operation and not config.test_mode and not collection_only:
|
|
|
|
|
if config.library_first and not config.test_mode and not collection_only:
|
|
|
|
|
if not overlay_only and library.library_operation:
|
|
|
|
|
library.Operations.run_operations()
|
|
|
|
|
if not library_only and library.overlay_files:
|
|
|
|
|
library.Overlays.run_overlays()
|
|
|
|
|
|
|
|
|
|
logger.debug("")
|
|
|
|
|
logger.debug(f"Mapping Name: {library.original_mapping_name}")
|
|
|
|
@ -278,8 +281,11 @@ def update_libraries(config):
|
|
|
|
|
run_collection(config, library, metadata, collections_to_run)
|
|
|
|
|
logger.re_add_library_handler(library.mapping_name)
|
|
|
|
|
|
|
|
|
|
if not config.library_first and library.library_operation and not config.test_mode and not collection_only:
|
|
|
|
|
if not config.library_first and not config.test_mode and not collection_only:
|
|
|
|
|
if not overlay_only and library.library_operation:
|
|
|
|
|
library.Operations.run_operations()
|
|
|
|
|
if not library_only and library.overlay_files:
|
|
|
|
|
library.Overlays.run_overlays()
|
|
|
|
|
|
|
|
|
|
logger.remove_library_handler(library.mapping_name)
|
|
|
|
|
except Exception as e:
|
|
|
|
|