Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Aug 18, 2024
1 parent b026849 commit 4ac6e56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ def main():
else:
suites2test = [suite]

os.makedirs("results/yml/", exist_of=True)
os.makedirs("results/txt/", exist_of=True)
os.makedirs("results/xml/", exist_of=True)
os.makedirs("results/yml/", exist_ok=True)
os.makedirs("results/txt/", exist_ok=True)
os.makedirs("results/xml/", exist_ok=True)

for library in libraries2test:
with open(f"./nix/{library}_pkg_versions.json", "r") as f:
Expand Down

0 comments on commit 4ac6e56

Please sign in to comment.