Skip to content

Commit

Permalink
Fix install location in sbom generation
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Sep 10, 2024
1 parent 44b3dfc commit cf19397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/local/sbom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ sbom_create_installer_map() {
}

sbom_create_msys_installed_files() {
find "$DEPLOY_DIR" -type f | while read -r file; do
relative_path="${file#$DEPLOY_DIR/}"
find "$OUTPUT_DIR" -type f | while read -r file; do
relative_path="${file#$OUTPUT_DIR/}"
found=false
removed_path=""

Expand Down

0 comments on commit cf19397

Please sign in to comment.