diff options
author | Christian Hesse <mail@eworm.de> | 2023-03-25 21:49:12 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-03-28 12:05:47 +0200 |
commit | 7293306f76b638f8ca94e9916e92389aed34b770 (patch) | |
tree | eeeeb8638495a2e731ae87b4d971a7bae2221ebf | |
parent | 847f0a4564e6f2b6084d591a0e8539c080bb49bb (diff) |
global-functions: $MkDir: return false on error
-rw-r--r-- | global-functions.rsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/global-functions.rsc b/global-functions.rsc index 416ea08..ffe9a4b 100644 --- a/global-functions.rsc +++ b/global-functions.rsc @@ -589,7 +589,7 @@ $WaitForFile "tmpfs"; } on-error={ $LogPrintExit2 warning $0 ("Creating disk of type tmpfs failed!") false; - :set Error true; + :return false; } } :set Continue true; |