File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
1717
1818- trino: Backport fix for wrong deletes in Delta Lake ([ #1453 ] ).
1919- opensearch: Scope CycloneDX SBOM to shipped components only, eliminating false positive CVEs from unshipped plugins ([ #1452 ] ).
20+ - vector: Look for SBOM in correct location ([ #1471 ] ).
2021- vector: Use correct license ([ #1476 ] ).
2122
2223[ #1446 ] : https://github.com/stackabletech/docker-images/pull/1446
@@ -25,6 +26,7 @@ All notable changes to this project will be documented in this file.
2526[ #1454 ] : https://github.com/stackabletech/docker-images/pull/1454
2627[ #1463 ] : https://github.com/stackabletech/docker-images/pull/1463
2728[ #1466 ] : https://github.com/stackabletech/docker-images/pull/1466
29+ [ #1471 ] : https://github.com/stackabletech/docker-images/pull/1471
2830[ #1474 ] : https://github.com/stackabletech/docker-images/pull/1474
2931[ #1476 ] : https://github.com/stackabletech/docker-images/pull/1476
3032
Original file line number Diff line number Diff line change 66cp " $1 " /app
77
88# And now try to find a BOM file named like the binary + _bin.cdx.xml and copy it over as well if it exists
9+ # Using `patchable with --images-repo-root=src` makes the path `/stackable/src/vector/patchable-work/worktree/0.52.0`
10+ # assuming WORKDIR was `/stackable`.
911base=$( basename " $1 " )
10- find /src/ -type f -name " ${base} _bin.cdx.xml" -exec cp {} /app \;
12+ find . -maxdepth 1 -type f -name " ${base} _bin.cdx.xml" -exec cp {} /app \;
You can’t perform that action at this time.
0 commit comments