remove error output if symlink already exists. this can happen if a user removed config.php to trigger the setup wizzard

This commit is contained in:
Frank Karlitschek 2012-01-03 17:23:50 +01:00
parent 868a3b5364
commit e0a058c732
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@ $appInfoDir = __DIR__;
$thisAppDir = dirname($appInfoDir);
$appsDir = dirname($thisAppDir);
$ownCloudDir = dirname($appsDir);
symlink($thisAppDir, $ownCloudDir.'/.well-known');
@symlink($thisAppDir, $ownCloudDir.'/.well-known');