Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions commit-ids-in-binaries/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading