diff --git a/install/scripts/update-cli.php b/install/scripts/update-cli.php deleted file mode 100755 index 1afd5d71..00000000 --- a/install/scripts/update-cli.php +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/php - (2016-) - * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt - * @package Cron - * - */ - -// Check if we're in the CLI -if (@php_sapi_name() !== 'cli') { - die('This script will only work in the shell.'); -} - -require dirname(dirname(__DIR__)) . '/vendor/autoload.php'; - -// give control to command line handler -try { - $argv[] = '--run'; - \Froxlor\Cli\UpdateCliCmd::processParameters($argc, $argv); -} catch (Exception $e) { - \Froxlor\Cli\UpdateCliCmd::printerr($e->getMessage()); -}