Skip to content

Commit

Permalink
Use console.php entry point for file scanning from console
Browse files Browse the repository at this point in the history
  • Loading branch information
bartv2 committed Aug 2, 2013
1 parent 3500c39 commit a7a05b3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
2 changes: 0 additions & 2 deletions scanFiles.php → apps/files/console/scan.php
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
25 changes: 25 additions & 0 deletions console.php
Original file line number Diff line number Diff line change
@@ -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";
}

0 comments on commit a7a05b3

Please sign in to comment.