From f20a93d8db441fb1205bb3fdb9250de3b39c53df Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 5 Aug 2024 12:13:59 +0200 Subject: [PATCH] Add GCC 14 --- modules/{GCC11.php => GCC14.php} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename modules/{GCC11.php => GCC14.php} (66%) diff --git a/modules/GCC11.php b/modules/GCC14.php similarity index 66% rename from modules/GCC11.php rename to modules/GCC14.php index 7b316b3..5032f32 100644 --- a/modules/GCC11.php +++ b/modules/GCC14.php @@ -1,13 +1,13 @@ patch->setBranch('11'); + $this->patch->setBranch('14'); } function check() : bool { if ($this->fetch('https://gcc.gnu.org/')) - return $this->parse('/GCC ([\d\.]+)/'); + return $this->parse('/GCC ([\d\.]+)/'); return false; } }