Skip to content
Snippets Groups Projects
Commit 4a13a84c authored by Joas Schilling's avatar Joas Schilling
Browse files

Do not add apps2/ directory if it does not exist

parent 0bed1876
No related branches found
No related tags found
No related merge requests found
<?php <?php
$CONFIG = array ( $CONFIG = [
"appstoreenabled" => false, 'appstoreenabled' => false,
'apps_paths' => 'apps_paths' => [
array ( [
0 => 'path' => OC::$SERVERROOT . '/apps',
array ( 'url' => '/apps',
'path' => OC::$SERVERROOT.'/apps', 'writable' => true,
'url' => '/apps', ],
'writable' => true, ],
), ];
1 =>
array (
'path' => OC::$SERVERROOT.'/apps2',
'url' => '/apps2',
'writable' => false,
)
),
);
if(substr(strtolower(PHP_OS), 0, 3) == "win") { if (is_dir(OC::$SERVERROOT.'/apps2')) {
$CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf'); $CONFIG['apps_paths'][] = [
'path' => OC::$SERVERROOT . '/apps2',
'url' => '/apps2',
'writable' => false,
];
}
if (substr(strtolower(PHP_OS), 0, 3) === 'win') {
$CONFIG['openssl'] = ['config' => OC::$SERVERROOT . '/tests/data/openssl.cnf'];
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment