install: Replace wget with curl.

curl uses Happy Eyeballs to avoid long timeouts on systems with broken
IPv6.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-06-24 16:28:27 -07:00
committed by Tim Abbott
parent d428c0e0dd
commit 91bfebca7d
25 changed files with 56 additions and 107 deletions

View File

@@ -58,6 +58,7 @@ shebang_rules: List["Rule"] = [
trailing_whitespace_rule: "Rule" = {
"pattern": r"\s+$",
"strip": "\n",
"exclude": {"tools/ci/success-http-headers.template.txt"},
"description": "Fix trailing whitespace",
}
whitespace_rules: List["Rule"] = [
@@ -70,10 +71,6 @@ whitespace_rules: List["Rule"] = [
{
"pattern": "\t",
"strip": "\n",
"exclude": {
"tools/ci/success-http-headers.template.txt",
"tools/ci/success-http-headers.template.debian.txt",
},
"description": "Fix tab-based whitespace",
},
]