From e21b4d1518f1dc0554cf3866e24e0e7f39f9ea4d Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Fri, 7 Feb 2020 14:05:13 +0100 Subject: [PATCH] GIMP: Regex --- modules/GIMP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/GIMP.php b/modules/GIMP.php index 9b72e3c..4d3fd99 100644 --- a/modules/GIMP.php +++ b/modules/GIMP.php @@ -6,7 +6,7 @@ class GIMP extends PatchBase { } function check() : bool { if ($this->fetch('https://www.gimp.org/downloads/')) - return $this->parse('_//download\.gimp\.org/mirror/pub/gimp/v[\d\.]+/windows/gimp-([\d\.]+)-setup[\-\d]*\.exe_'); + return $this->parse('_//download\.gimp\.org/mirror/pub/gimp/v[\d\.]+/windows/gimp-([\d\.]+)-setup[-\d]*\.exe_'); return false; } }