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
3 changes: 2 additions & 1 deletion src/fosslight_binary/binary_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ def get_file_list(path_to_find, excluded_files):

bin_item = BinaryItem(bin_with_path)
bin_item.binary_name_without_path = file
bin_item.source_name_or_path = bin_with_path.replace(_root_path, '', 1)
# Keep POSIX-style separators in reports (same as fosslight_source on Windows).
bin_item.source_name_or_path = rel_path_file

bin_list.append(bin_item)
file_cnt += 1
Expand Down
Loading