From d8e0ff78d70b88085bd6198ed723567fc6f9a03a Mon Sep 17 00:00:00 2001 From: Tom Deseyn Date: Tue, 7 Jul 2026 15:46:43 +0200 Subject: [PATCH] commit-ids-in-binaries: skip libaspnetcoretools.so. libaspnetcoretools.so does not include the expected version string format. --- commit-ids-in-binaries/test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commit-ids-in-binaries/test.sh b/commit-ids-in-binaries/test.sh index f2fc22c8..05b0c0d3 100755 --- a/commit-ids-in-binaries/test.sh +++ b/commit-ids-in-binaries/test.sh @@ -24,6 +24,11 @@ find ${dotnet_home} -type f -name '*.so' -print0 | while IFS= read -r -d '' file continue; fi + # libaspnetcoretools.so does not include the expected version string format. (https://github.com/dotnet/aspnetcore/issues/67637) + if [ "$(basename "${file}")" == libaspnetcoretools.so ]; then + continue; + fi + echo "${file}" strings "${file}" | grep '@(#)' | grep -o '[a-f0-9]\{40\}' done