Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pre_process/m_start_up.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ contains
! the time-step directory that will contain the new grid and initial
! condition data are also generated.
if (old_ic .neqv. .true.) then
call s_delete_directory(trim(proc_rank_dir)//'/*')
call s_delete_directory(trim(proc_rank_dir))
call s_create_directory(trim(proc_rank_dir)//'/0')
end if

Expand Down Expand Up @@ -505,7 +505,7 @@ contains
! process may be cleaned out to make room for new pre-process data.
! In addition, the time-step folder that will contain the new grid
! and initial condition data are also generated.
call s_create_directory(trim(proc_rank_dir)//'/*')
call s_delete_directory(trim(proc_rank_dir))
call s_create_directory(trim(proc_rank_dir)//'/0')

end subroutine s_read_serial_ic_data_files
Expand Down
Loading