Fixed bug in creating data directories due to our string interpolation changes.

This commit is contained in:
Abdulmhsen B. A. A
2023-09-14 23:20:42 +03:00
parent 8a647874b1
commit b9eca19074
3 changed files with 19 additions and 19 deletions

View File

@@ -3,12 +3,12 @@
declare(strict_types=1);
return [
'%(path)/db/archive',
'%(path)/config',
'%(path)/backup',
'%(tmpDir)/logs',
'%(tmpDir)/cache',
'%(tmpDir)/profiler',
'%(tmpDir)/webhooks',
'%(tmpDir)/debug',
'{path}/db/archive',
'{path}/config',
'{path}/backup',
'{tmpDir}/logs',
'{tmpDir}/cache',
'{tmpDir}/profiler',
'{tmpDir}/webhooks',
'{tmpDir}/debug',
];