Add MariaDB 10.4
This commit is contained in:
parent
59db195f8b
commit
167e31e50e
1 changed files with 15 additions and 0 deletions
15
modules/MariaDB104.php
Normal file
15
modules/MariaDB104.php
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class MariaDB104 extends PatchBase {
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://downloads.mariadb.org/');
|
||||||
|
$this->patch->setBranch('10.4');
|
||||||
|
}
|
||||||
|
function check() : bool {
|
||||||
|
if ($this->fetch('https://downloads.mariadb.com/MariaDB/mariadb-10.4/source/'))
|
||||||
|
return $this->parse('/mariadb-([\d\.]+)\.tar\.gz/');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue