Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion src/fosslight_source/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def main() -> None:
except Exception as ex:
logger.debug(f"Failed to print log.: {ex}")
else:
logger.error(f"Input path({path_to_scan}) is not a directory. Please enter a valid path.")
logger.error(f"(-p option) Input path({path_to_scan}) is not a directory. Please enter a valid path.")
sys.exit(1)


Expand Down
2 changes: 1 addition & 1 deletion src/fosslight_source/run_scancode.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def run_scan(
logger.error(f"Analyze {path_to_scan}: {msg}")
else:
success = False
msg = "Check the path to scan. :" + path_to_scan
msg = f"(-p option) Check the path to scan: {path_to_scan}"

if not return_results:
result_list = []
Expand Down
Loading