Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Print output file instead of path #13

Merged
merged 1 commit into from
Nov 4, 2021
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_scanner/fosslight_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ def run(src_path, dep_path, dep_arguments, output_path, remove_raw_data=True,

result_log["Result"] = success
if success:
result_log["Output Path"] = final_excel_dir
file_extension = ".xlsx" if output_extension == "" else output_extension
result_log["Output File"] = output_file_without_ext + file_extension
else:
result_log["Result Message - Merge"] = msg
except Exception as ex:
Expand Down