Skip to content

Commit 9a9aeb9

Browse files
authored
Merge pull request #375 from anthofflab/1.0-fix
Add 'mode' keyword to call to mkpath
2 parents 064e3d1 + 61a620b commit 9a9aeb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcs/montecarlo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function save_trial_results(mcs::MonteCarloSimulation, output_dir::AbstractStrin
9393
for (i, results) in enumerate(mcs.results)
9494
if multiple_results
9595
sub_dir = joinpath(output_dir, "model_$i")
96-
mkpath(sub_dir, 0o750)
96+
mkpath(sub_dir, mode=0o750)
9797
else
9898
sub_dir = output_dir
9999
end

0 commit comments

Comments
 (0)