Skip to content

Commit

Permalink
run_aspen: ensure Level_1 folder exists
Browse files Browse the repository at this point in the history
  • Loading branch information
d70-t committed Aug 7, 2024
1 parent e9f01a1 commit 712c2ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/halodrops/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def run_aspen(self, path_to_postaspenfile: str = None) -> None:
path_to_postaspenfile = os.path.join(l1dir, l1name)

if not os.path.exists(path_to_postaspenfile):
os.makedirs(l1dir, exist_ok=True)
subprocess.run(
[
"docker",
Expand Down

0 comments on commit 712c2ae

Please sign in to comment.