Skip to content

Commit

Permalink
Fix SaveCell extension
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti committed Oct 25, 2023
1 parent 5065a4c commit 883ffbe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/EquationOfStateWorkflow/think.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ think(action::ExtractCell, conf::Conf) =
think(action::SaveCell, conf::Conf) = collect(
Thunk(
action(
joinpath(dirname(file), string(nameof(typeof(Calculation(action))))) *
conf.data.cell.extension,
joinpath(
dirname(file),
join(
(string(nameof(typeof(Calculation(action))))),
conf.data.cell.extension,
),
'.',
),
),
) for file in last.(conf.io)
)
Expand Down

0 comments on commit 883ffbe

Please sign in to comment.