Skip to content

Commit 57f7c6a

Browse files
authored
Merge pull request #85 from belericant/dir_flags
Resolves #50
2 parents 5cdc236 + e88eddc commit 57f7c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/m_compile_specific.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ subroutine s_delete_directory(dir_name)
4343
#ifdef _WIN32
4444
call system('rmdir "'//dir_name//'" /s /q')
4545
#else
46-
call system('rm -rf "'//dir_name//'"')
46+
call system('rm -r "'//dir_name//'"')
4747
#endif
4848

4949
end subroutine s_delete_directory

0 commit comments

Comments
 (0)