Use console.php entry point for file scanning from console

remotes/origin/stable6
Bart Visscher 11 years ago
parent 3500c39567
commit a7a05b321a

@ -1,7 +1,5 @@
<?php
require_once __DIR__ . '/lib/base.php';
if (!OC::$CLI) {
echo "This script can be run from the command line only\n";
return;

@ -0,0 +1,25 @@
<?php
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
$RUNTIME_NOAPPS = true;
require_once 'lib/base.php';
// Don't do anything if ownCloud has not been installed yet
if (!OC_Config::getValue('installed', false)) {
exit(0);
}
if (OC::$CLI) {
if ($argc > 1 && $argv[1] === 'files:scan') {
require_once 'apps/files/console/scan.php';
}
}
else
{
echo "This script can be run from the command line only\n";
}
Loading…
Cancel
Save