From 6d04cf04aa2eca49ea5c57d14d549e52d1ad679d Mon Sep 17 00:00:00 2001 From: windowsboy111 Date: Sun, 16 Apr 2023 23:04:06 +0800 Subject: [PATCH] fix(update): crystal Somehow the regex thingy failed Signed-off-by: windowsboy111 --- anda/crystal/crystal/update.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/crystal/crystal/update.rhai b/anda/crystal/crystal/update.rhai index 8c44f774a8..8d53b0e749 100644 --- a/anda/crystal/crystal/update.rhai +++ b/anda/crystal/crystal/update.rhai @@ -1,2 +1,2 @@ let html = get("https://crystal-lang.org/"); -rpm.version(find("Latest release <.+>(.+)<\\/a>", html, 1)) +rpm.version(find("Latest release <.+>(.+)", html, 1))