Due to our string interpolation changes the directory creation would fail to work. for new installations. Fixed #342
This commit is contained in:
@@ -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',
|
||||
];
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user