From 23e5c01a429115a9c7590be10744debdb848782c Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 12 Jan 2023 23:43:38 +0100 Subject: global-functions: $MkDir: no early continue for dir "tmpfs"... ... as we want a RAM disk. --- global-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global-functions b/global-functions index 9ed6b4a..cfd9091 100644 --- a/global-functions +++ b/global-functions @@ -543,7 +543,7 @@ :local Continue false; :set PathNext [ $CleanFilePath ($PathNext . "/" . $Dir) ]; - :if ([ :len [ /file/find where name=$PathNext type="directory" ] ] = 1) do={ + :if ([ :len [ /file/find where name=$PathNext !(name="tmpfs") type="directory" ] ] = 1) do={ :set Continue true; } -- cgit v1.2.3-54-g00ecf