1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

Merge pull request #2706 from chadbrewbaker/master

Fix need for ssh keys
This commit is contained in:
Sylvestre Ledru 2021-10-10 09:41:34 +02:00 committed by GitHub
commit 32ec3f75ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,12 +5,12 @@
set -e set -e
if test ! -d ../gnu; then if test ! -d ../gnu; then
echo "Could not find ../gnu" 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 exit 1
fi fi
if test ! -d ../gnulib; then if test ! -d ../gnulib; then
echo "Could not find ../gnulib" 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 exit 1
fi fi