Add buid/NewPatches.php to branch.

This commit is contained in:
DariusIII
2015-10-13 11:16:45 +02:00
parent a744014cf2
commit 4393e972b1
3 changed files with 55 additions and 3 deletions
-2
View File
@@ -1,2 +0,0 @@
2015-09-24 DariusIII
- Add failed downloads count to releases.
+4 -1
View File
@@ -1 +1,4 @@
Change permissions on files
2015-10-13 DariusIII
Add: add build/NewPatches.php
2015-10-13 DariusIII
Change permissions on files
+51
View File
@@ -0,0 +1,51 @@
<?php
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (see LICENSE.txt in the base directory. If
* not, see:
*
* @link <http://www.gnu.org/licenses/>.
* @author niel
* @copyright 2015 nZEDb
*/
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'indexer.php';
use nzedb\db\DbUpdate;
use nzedb\utility\Git;
use nzedb\utility\Misc;
if (!Misc::isCLI()) {
exit;
}
$error = false;
$git = new Git();
$branch = $git->active_branch();
if (in_array($branch, $git->mainBranches())) {
// Only update patches, etc. on specific branches to lessen conflicts
try {
// Run DbUpdates to make sure we're up to date.
$DbUpdater = new DbUpdate(['git' => $git]);
$DbUpdater->newPatches(['safe' => false]);
} catch (\Exception $e) {
$error = 1;
echo "Error while checking patches!\n";
echo $e->getMessage() . "\n";
}
}
exit($error);
?>