Fixed bug in creating data directories due to our string interpolation changes.
This commit is contained in:
@@ -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',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user