diff --git a/infra/deploy-runner/nodedc-deploy b/infra/deploy-runner/nodedc-deploy index f184a0f..fa48f71 100755 --- a/infra/deploy-runner/nodedc-deploy +++ b/infra/deploy-runner/nodedc-deploy @@ -828,6 +828,10 @@ def component_build_args(component, entries=None): touches_notification = any(rel == "platform/notification-core" or rel.startswith("platform/notification-core/") for rel in entries) return COMPONENTS[component].get("build") if touches_notification else None + if component == "bim-viewer" and entries is not None: + touches_converter = any(rel == "converter" or rel.startswith("converter/") for rel in entries) + return COMPONENTS[component].get("build") if touches_converter else None + return COMPONENTS[component].get("build")