From fd915a956c5e17ae255fe420b4e2dd7b1899533b Mon Sep 17 00:00:00 2001 From: Hsiao-nan Cheung Date: Mon, 18 Mar 2019 18:36:16 +0800 Subject: [PATCH] jom: Fix checkver and au.hash (#3237) * jom: Fix checkver and au.hash * change to https --- jom.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/jom.json b/jom.json index 9ab6fd6309..c49c4f52dd 100644 --- a/jom.json +++ b/jom.json @@ -10,13 +10,15 @@ "jom.exe" ], "checkver": { - "url": "https://download.qt.io/official_releases/jom/changelog.txt", - "regex": "This is the changelog for jom ([\\d.]+), the parallel make tool." + "url": "https://download.qt.io/official_releases/jom/md5sums.txt", + "regex": "jom_(\\d+)_(\\d+)_(\\d+).zip", + "reverse": true, + "replace": "${1}.${2}.${3}" }, "autoupdate": { "url": "https://download.qt.io/official_releases/jom/jom_$underscoreVersion.zip", "hash": { - "url": "$baseurl/md5sums.txt" + "url": "$url.sha256" } } }