From 1d53b5f3b0c41041b45cd5cf73568c390e36c87d Mon Sep 17 00:00:00 2001 From: hutcheb Date: Sun, 7 Dec 2025 15:13:13 +0800 Subject: [PATCH] fix(bacnet): Don't fail the build when the vendor id can't be downlaoded. --- protocols/bacnetip/src/main/script/getVendorIds.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/protocols/bacnetip/src/main/script/getVendorIds.groovy b/protocols/bacnetip/src/main/script/getVendorIds.groovy index 6eaf587ceba..511f7eb9f36 100644 --- a/protocols/bacnetip/src/main/script/getVendorIds.groovy +++ b/protocols/bacnetip/src/main/script/getVendorIds.groovy @@ -50,6 +50,9 @@ if (update) { println "Successfully updated BACnet Vendor IDs.htm" } catch (Exception e) { println "Got an error updating BACnet Vendor IDs.htm. Intentionally not failing the build as we might just be offline: " + e.getMessage() + // If we can't update the vendor id file, it may be older and we run the risk of incorrectly updating the repo with an older version. + // The vendor id website also has a cloudfare check which depending on the location may fail the build. + return } } else { println "Skipped updating BACnet Vendor IDs.htm as it's fresh enough"