remove is_writable check for ../repository folder since this can be configured as any other folder, or set as read-only

This commit is contained in:
Milos Stojanovic
2023-10-13 12:01:03 +02:00
parent 2b3b3c0925
commit e682f8bf4f

5
dist/index.php vendored
View File

@@ -21,11 +21,6 @@ if (! is_writable(__DIR__.'/../private/logs/')) {
die;
}
if (! is_writable(__DIR__.'/../repository/')) {
echo 'Folder not writable: /repository/'."\n";
die;
}
if (! file_exists(__DIR__.'/../configuration.php')) {
copy(__DIR__.'/../configuration_sample.php', __DIR__.'/../configuration.php');
}