Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
This commit is contained in:
commit
9caaa9397e
@ -1785,6 +1785,21 @@ class Admin extends \Zotlabs\Web\Controller {
|
|||||||
$repoDir = $addonDir.'/'.$repoName;
|
$repoDir = $addonDir.'/'.$repoName;
|
||||||
$tempAddonDir = __DIR__ . '/../../store/git/sys/temp/' . $repoName;
|
$tempAddonDir = __DIR__ . '/../../store/git/sys/temp/' . $repoName;
|
||||||
rename($tempAddonDir, $repoDir);
|
rename($tempAddonDir, $repoDir);
|
||||||
|
|
||||||
|
$files = array_diff(scandir($repoDir), array('.', '..'));
|
||||||
|
logger('files: ' . json_encode($files));
|
||||||
|
foreach ($files as $file)
|
||||||
|
{
|
||||||
|
if(is_dir($repoDir.'/'.$file) && $file !== '.git') {
|
||||||
|
$source = '../extend/addon/'.$repoName.'/'.$file;
|
||||||
|
$target = realpath(__DIR__ . '/../../addon/').'/'.$file;
|
||||||
|
unlink($target);
|
||||||
|
if(!symlink($source, $target)) {
|
||||||
|
logger('Error linking addons to /addon');
|
||||||
|
json_return_and_die(array('message' => 'Error linking addons to /addon', 'success' => false));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
$git = new GitRepo('sys', $repoURL, false, $repoName, $repoDir);
|
$git = new GitRepo('sys', $repoURL, false, $repoName, $repoDir);
|
||||||
$repo = $git->probeRepo();
|
$repo = $git->probeRepo();
|
||||||
json_return_and_die(array('repo'=> $repo, 'message' => '', 'success' => true));
|
json_return_and_die(array('repo'=> $repo, 'message' => '', 'success' => true));
|
||||||
|
Reference in New Issue
Block a user