cms-installer/cms
2015-03-02 21:22:57 +01:00

17 lines
389 B
PHP
Executable file

#!/usr/bin/env php
<?php
define('ROOT', dirname(__FILE__).DIRECTORY_SEPARATOR);
require_once ROOT.DIRECTORY_SEPARATOR.'lib'.DIRECTORY_SEPARATOR.'autoload'.DIRECTORY_SEPARATOR.'Autoload.class.php';
Autoload::register();
try {
$CmsInstallerApp = new CmsInstallerApp($argv);
$CmsInstallerApp->init();
}
catch(Exception $e) {
Cli::printError('Fatal error', $e->getMessage());
die(1);
}