Skip to content
Snippets Groups Projects
Commit 58f369d0 authored by Thomas Müller's avatar Thomas Müller
Browse files

more verbose printouts - fixing execution

parent 5e1a7750
No related branches found
No related tags found
No related merge requests found
......@@ -11,15 +11,26 @@ require_once 'lib/base.php';
// Don't do anything if ownCloud has not been installed yet
if (!OC_Config::getValue('installed', false)) {
echo "Console can only be used once ownCloud has been installed" . PHP_EOL;
exit(0);
}
if (OC::$CLI) {
if ($argc > 1 && $argv[1] === 'files:scan') {
require_once 'apps/files/console/scan.php';
}
if (!OC::$CLI) {
echo "This script can be run from the command line only" . PHP_EOL;
exit(0);
}
if ($argc < 1) {
echo "Usage:" . PHP_EOL;
echo " php console.php <command>" . PHP_EOL;
exit(0);
}
else
{
echo "This script can be run from the command line only\n";
$command = $argv[1];
array_shift($argv);
if ($command === 'files:scan') {
require_once 'apps/files/console/scan.php';
} else {
echo "Unknown command '$command'" . PHP_EOL;
}
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