From a9bfd5df0626168dd3bcbba20799182f48e4d19d Mon Sep 17 00:00:00 2001 From: Chad Brewbaker Date: Sat, 9 Oct 2021 23:01:05 -0500 Subject: [PATCH] Fix need for ssh keys Github now mandates git ssh keys instead of username/password. I modified the download instructions to remove the need for ssh authentication. --- util/build-gnu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/build-gnu.sh b/util/build-gnu.sh index bbb16981e..eb8293fbe 100755 --- a/util/build-gnu.sh +++ b/util/build-gnu.sh @@ -5,12 +5,12 @@ set -e if test ! -d ../gnu; then echo "Could not find ../gnu" - echo "git clone git@github.com:coreutils/coreutils.git gnu" + echo "git clone https://github.com:coreutils/coreutils.git gnu" exit 1 fi if test ! -d ../gnulib; then echo "Could not find ../gnulib" - echo "git clone git@github.com:coreutils/gnulib.git gnulib" + echo "git clone https://github.com/coreutils/gnulib.git gnulib" exit 1 fi