Skip to content

Commit bbb8f07

Browse files
authored
Merge pull request #2 from fosslight/develop
Update output file names
2 parents f5b9f86 + 3959655 commit bbb8f07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fosslight_android/android_binary_analysis.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,9 +768,9 @@ def main():
768768

769769
python_script_dir = os.getcwd()
770770
now = datetime.now().strftime('%y%m%d_%H%M')
771-
result_txt_file = os.path.join(python_script_dir, f"fosslight_binary_{now}.txt")
772-
log_txt_file = os.path.join(python_script_dir, f"fosslight_log_{now}.txt")
773-
result_excel_file = os.path.join(python_script_dir, f"fosslight_report_{now}.xlsx")
771+
result_txt_file = os.path.join(python_script_dir, f"fosslight_binary_android_{now}.txt")
772+
log_txt_file = os.path.join(python_script_dir, f"fosslight_log_android_{now}.txt")
773+
result_excel_file = os.path.join(python_script_dir, f"fosslight_report_android_{now}.xlsx")
774774
logger, result_log = init_log(log_txt_file, True, logging.INFO, logging.DEBUG, PKG_NAME)
775775
remove_list_file = ""
776776

0 commit comments

Comments
 (0)