From fc1b5051d78672c4ac62a82565260d0305054f0b Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Tue, 31 Aug 2021 19:34:37 -0400 Subject: Switch to https for downloads Credit to @lnslbrty for suggesting this. --- mingw-w64-build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mingw-w64-build b/mingw-w64-build index 8b2ff39..96a1f55 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -127,19 +127,19 @@ download_sources() execute "downloading MinGW-w64 source" "" \ git clone --depth 1 -b "$MINGW_W64_BRANCH" \ - git://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64 + https://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64 execute "downloading Binutils source" "" \ git clone --depth 1 -b "$BINUTILS_BRANCH" \ - git://sourceware.org/git/binutils-gdb.git binutils + https://sourceware.org/git/binutils-gdb.git binutils execute "downloading GCC source" "" \ git clone --depth 1 -b "$GCC_BRANCH" \ - git://gcc.gnu.org/git/gcc.git gcc + https://gcc.gnu.org/git/gcc.git gcc execute "downloading config.guess" "" \ curl -o config.guess \ - "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD" + "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD" } build() -- cgit v1.2.3