Skip to content
Snippets Groups Projects
Commit a7a05b32 authored by Bart Visscher's avatar Bart Visscher
Browse files

Use console.php entry point for file scanning from console

parent 3500c395
No related branches found
No related tags found
No related merge requests found
<?php
require_once __DIR__ . '/lib/base.php';
if (!OC::$CLI) {
echo "This script can be run from the command line only\n";
return;
......
<?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";
}
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