An attempt to obtain a functional version with the various fixes implemented so far.
This commit is contained in:
13
hooks/run.php
Normal file
13
hooks/run.php
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/php
|
||||
|
||||
<?php
|
||||
require __DIR__ . "/../../../3rdparty/autoload.php";
|
||||
require __DIR__ . "/../lib/Command/.php";
|
||||
require __DIR__. "/../../../lib/composer/autoload.php";
|
||||
use OCA\NCDownloader\Command\cmdTool;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
$app = new Application();
|
||||
$cmd = new cmdTool();
|
||||
$app->add($cmd);
|
||||
$app->run();
|
||||
Reference in New Issue
Block a user