Skip to content

Commit

Permalink
Fixes #69 use normpath for paths.
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Kaźmierczyk <[email protected]>
  • Loading branch information
kkazmierczyk committed Jan 2, 2025
1 parent 23d5aba commit 822af26
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/javacore_analyser/javacore_analyser_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def batch_process(input_param, output_param, files_separator=DEFAULT_FILE_DELIMI
else:
files = [input_param]
try:
files = [os.path.normpath(file) for file in files]
process_javacores_and_generate_report_data(files, output_param)
except Exception as ex:
logging.exception(ex)
Expand Down

0 comments on commit 822af26

Please sign in to comment.