From e01cb90b279b08a83bf4823d87f4d64f892f0990 Mon Sep 17 00:00:00 2001 From: Dabombber Date: Sat, 21 Mar 2020 21:48:18 +1300 Subject: [PATCH] shellcheck: Use github releases (#907) --- bucket/shellcheck.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/bucket/shellcheck.json b/bucket/shellcheck.json index 7e989b9ce7..cc1d26b850 100644 --- a/bucket/shellcheck.json +++ b/bucket/shellcheck.json @@ -3,16 +3,14 @@ "version": "0.7.0", "description": "Static analysis tool for shell scripts", "license": "GPL-3.0-only", - "url": "https://shellcheck.storage.googleapis.com/shellcheck-v0.7.0.zip", + "url": "https://github.com/koalaman/shellcheck/releases/download/v0.7.0/shellcheck-v0.7.0.zip", "hash": "02cfa14220c8154bb7c97909e80e74d3a7fe2cbb7d80ac32adcac7988a95e387", "bin": "shellcheck.exe", "pre_install": "Get-ChildItem \"$dir\\shellcheck-*.exe\" | Rename-Item -NewName \"$dir\\shellcheck.exe\"", "checkver": { - "url": "https://shellcheck.storage.googleapis.com/", - "re": "shellcheck-v([\\d.]+)\\.zip", - "reverse": true + "github": "https://github.com/koalaman/shellcheck" }, "autoupdate": { - "url": "https://shellcheck.storage.googleapis.com/shellcheck-v$version.zip" + "url": "https://github.com/koalaman/shellcheck/releases/download/v$version/shellcheck-v$version.zip" } }