diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-12 10:51:42 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-12 10:51:42 -0400 |
commit | 2aeb2f1276e009badab7d0a847f4d7e93e2cd0cd (patch) | |
tree | 9969a10e9c33a3d93bdf6c31a9851202cafddb6c /common | |
parent | fca71fde0161a59ac650bd690a3413ffd866662d (diff) | |
download | levitating-2aeb2f1276e009badab7d0a847f4d7e93e2cd0cd.tar.gz levitating-2aeb2f1276e009badab7d0a847f4d7e93e2cd0cd.zip |
Tree deletion now also uses the 'f' flag on non-windows
Diffstat (limited to 'common')
-rw-r--r-- | common/utilities.F90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/utilities.F90 b/common/utilities.F90 index cd32610..cc2f727 100644 --- a/common/utilities.F90 +++ b/common/utilities.F90 @@ -80,7 +80,7 @@ contains flags = " " cmd = "rmdir" #else - flags = "-r" + flags = "-rf" cmd = "rm" #endif |