Skip to content

Commit

Permalink
see if only the control file removal causes Windows issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwinters5000 committed Jun 24, 2024
1 parent 2d8594f commit 27158f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Mesh/Meshing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ function remove_mesh!(proj::Project)
# Remove all the output files associated with the current `proj`
fileName = getMeshFileName(proj)
rm(fileName)
# Get the control file name of the current project
fileName = joinpath(proj.projectDirectory,proj.name) * ".control"
rm(fileName)
# TODO: See if it is only the control file that causes issues on Windows
# # Get the control file name of the current project
# fileName = joinpath(proj.projectDirectory,proj.name) * ".control"
# rm(fileName)
fileName = getPlotFileName(proj)
rm(fileName)
fileName = getStatsFileName(proj)
Expand Down

0 comments on commit 27158f3

Please sign in to comment.