Push testing changes

This commit is contained in:
DariusIII
2016-05-20 16:03:30 +02:00
parent e87b047f07
commit e06f2dc266
6 changed files with 135 additions and 7 deletions
+9 -1
View File
@@ -74,6 +74,12 @@ if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]) && isset($argv[4])) {
case 10:
$namefixer->fixNamesWithSrr(2, $update, $other, $setStatus, $show);
break;
case 11:
$namefixer->fixNamesWithMedia(1, $update, $other, $setStatus, $show);
break;
case 12:
$namefixer->fixNamesWithMedia(2, $update, $other, $setStatus, $show);
break;
default :
exit($pdo->log->error("\nERROR: Wrong argument, type php $argv[0] to see a list of valid arguments." . $n));
break;
@@ -93,5 +99,7 @@ if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]) && isset($argv[4])) {
. "php $argv[0] 7 false other no ...: Fix release names in misc categories using Par2 Files in the past 6 hours.\n"
. "php $argv[0] 8 false other no ...: Fix release names in misc categories using Par2 Files.\n"
. "php $argv[0] 9 false other no ...: Fix release names in misc categories using SRR Files in the past 6 hours.\n"
. "php $argv[0] 10 false other no ...: Fix release names in misc categories using SRR Files.\n"));
. "php $argv[0] 10 false other no ...: Fix release names in misc categories using SRR Files.\n"
. "php $argv[0] 11 false other no ...: Fix release names in misc categories using UID in the past 6 hours.\n"
. "php $argv[0] 12 false other no ...: Fix release names in misc categories using UID.\n"));
}