From e7e90c08e15e14ba701aae3b7a5415467433bcc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Tue, 11 Jan 2022 12:39:21 -0300 Subject: [PATCH] Fix CI since github no longer accepts git:// protocol As of today, everything fails on CI with: ``` Run common/travis/fetch_upstream.sh Fetching upstream... fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. Error: Process completed with exit code 128. ``` Switching `git://` to `https://` should fix this. --- common/travis/fetch_upstream.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/travis/fetch_upstream.sh b/common/travis/fetch_upstream.sh index b1b06d9d54f9..45315563e0b1 100755 --- a/common/travis/fetch_upstream.sh +++ b/common/travis/fetch_upstream.sh @@ -9,4 +9,4 @@ elif command -v git >/dev/null 2>&1; then fi /bin/echo -e '\x1b[32mFetching upstream...\x1b[0m' -$GIT_CMD fetch --depth 200 git://github.com/void-linux/void-packages.git master +$GIT_CMD fetch --depth 200 https://github.com/void-linux/void-packages.git master