Due to our string interpolation changes the directory creation would fail to work. for new installations. Fixed #342

This commit is contained in:
Abdulmhsen B. A. A
2023-09-15 15:58:33 +03:00
parent b9eca19074
commit a2f8c8a08c
2 changed files with 7 additions and 7 deletions

View File

@@ -6,9 +6,9 @@ return [
'{path}/db/archive',
'{path}/config',
'{path}/backup',
'{tmpDir}/logs',
'{tmpDir}/cache',
'{tmpDir}/profiler',
'{tmpDir}/webhooks',
'{tmpDir}/debug',
'{tmp_dir}/logs',
'{tmp_dir}/cache',
'{tmp_dir}/profiler',
'{tmp_dir}/webhooks',
'{tmp_dir}/debug',
];

View File

@@ -445,8 +445,8 @@ final class Initializer
};
$list = [
'{path}' => $fn('path', $path),
'{tmpDir}' => $fn('tmpDir', $tmpDir),
'path' => $fn('path', $path),
'tmp_dir' => $fn('tmpDir', $tmpDir),
];
foreach (require $dirList as $dir) {