Skip to content

Commit

Permalink
Merge remote-tracking branch 'richtja/arm_fix'
Browse files Browse the repository at this point in the history
Signed-off-by: Cleber Rosa <crosa@redhat.com>
  • Loading branch information
clebergnu committed Aug 21, 2023
2 parents 28245ac + 2e06de7 commit ce66639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avocado/utils/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def init_dir(*args):
"""
directory = os.path.join(*args)
if not os.path.isdir(directory):
os.makedirs(directory)
os.makedirs(directory, exist_ok=True)
return directory


Expand Down

0 comments on commit ce66639

Please sign in to comment.