Core update (good design is as little as possible)

This commit is contained in:
markseu 2014-04-07 17:26:46 +02:00
parent a281dfb66a
commit 4ffca610a1

View file

@ -11,7 +11,7 @@ if(PHP_SAPI != "cli")
} else {
$yellow = new Yellow();
$yellow->plugins->load();
$statusCode = $yellow->plugin("commandline", $argv[1], $argv[2], $argv[3], $argv[4], $argv[5]);
$statusCode = $yellow->plugin("commandline", $argv[1], $argv[2], $argv[3], $argv[4], $argv[5], $argv[6]);
exit($statusCode<=200 ? 0 : 1);
}
?>