Skip to content

Commit 4527863

Browse files
authored
Update temporary directory name (#242)
1 parent 45ebd81 commit 4527863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fosslight_source/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def run_scanners(
370370
if output_path == "":
371371
output_path = os.getcwd()
372372
final_output_path = output_path
373-
output_path = os.path.join(os.path.dirname(output_path), '.fosslight_temp')
373+
output_path = os.path.join(os.path.dirname(output_path), f'.fosslight_temp_{start_time}')
374374

375375
logger, result_log = init_log(os.path.join(output_path, f"fosslight_log_src_{start_time}.txt"),
376376
True, logging.INFO, logging.DEBUG, PKG_NAME, path_to_scan, path_to_exclude)

0 commit comments

Comments
 (0)