util: fix path (#2396)

suggest to clone into the path that `util/run-gnu-test.sh` will be using
This commit is contained in:
Jan Scheer 2021-06-11 07:33:11 +02:00 committed by GitHub
parent 3347dacfc8
commit 46981a69f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 git@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 git@github.com:coreutils/gnulib.git gnulib"
exit 1
fi