From 092de73cc62ea71df849b0f01de3f883896306b5 Mon Sep 17 00:00:00 2001 From: linsui <36977733+linsui@users.noreply.github.com> Date: Thu, 5 Sep 2019 16:37:08 +0000 Subject: [PATCH] SQLite: fix checkver (#400) --- bucket/sqlite.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bucket/sqlite.json b/bucket/sqlite.json index 073adbfab2..4ea13a1fbf 100644 --- a/bucket/sqlite.json +++ b/bucket/sqlite.json @@ -13,14 +13,14 @@ ], "checkver": { "url": "https://www.sqlite.org/download.html", - "regex": "sqlite-tools-win32-x86-(?[\\d]+).zip.*?for SQLite version ([\\d.]+)\\." + "regex": "(?sm)64-bit DLL \\(x64\\) for SQLite version ([\\d.]+)\\..*?(?\\d+)/sqlite-tools-win32-x86-(?\\d+)" }, "autoupdate": { - "url": "https://www.sqlite.org/2019/sqlite-tools-win32-x86-$matchNumber.zip", + "url": "https://www.sqlite.org/$matchYear/sqlite-tools-win32-x86-$matchClean.zip", "hash": { "url": "https://www.sqlite.org/download.html", "regex": "(?sm)$basename.*?$sha1" }, - "extract_dir": "sqlite-tools-win32-x86-$matchNumber" + "extract_dir": "sqlite-tools-win32-x86-$matchClean" } }