Skip to content

Commit

Permalink
Add missing parameter (#228)
Browse files Browse the repository at this point in the history
- *Category*: bugfix
- *JIRA issue*: [MIC-3471](https://jira.ihme.washington.edu/browse/MIC-3471)

Adds a missing parameter, somehow removed (perhaps during a merge?)

Testing
Ran `simulate run` with fix, simulation carried on beyond the bug.
  • Loading branch information
mattkappel committed Oct 3, 2022
1 parent 2ff4eb9 commit 0fc302c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vivarium/interface/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def run(

start = time()

results_root = get_output_root(results_directory, model_specification)
results_root = get_output_root(results_directory, model_specification, artifact_path)
# Update permissions mask (assign to variable to avoid printing previous value)
_ = os.umask(0o002)
results_root.mkdir(parents=True, exist_ok=False)
Expand Down

0 comments on commit 0fc302c

Please sign in to comment.