Skip to content

Commit

Permalink
squash bug / add temp dir to monitoring logs collection script (#8921)
Browse files Browse the repository at this point in the history
* add temp dir

* only make the dir if it doesnt exist already
  • Loading branch information
RoriCremer authored Aug 1, 2024
1 parent 851e505 commit ccf1566
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,7 @@ def eprint(*the_args, **kwargs):
parser.add_argument('--output', type=str, help='Output Monitoring log summary file', required=True)
args = parser.parse_args()

if not os.path.exists("temp"):
os.makedirs("temp")

parse_monitoring_log_files(args.input, args.output)

0 comments on commit ccf1566

Please sign in to comment.