Use relative paths in scripts/download.sh (#632)

If there is another folder with the same name in your path when running
the script, it will enter that folder and recursively try to download
all the files. It the folder is big enough, it can hang the computer.

Co-authored-by: Gonzalo Bella <gonzalobella@gambitresearch.com>
pull/635/head
Gonzalo Bella 2 years ago committed by GitHub
parent 20b552c908
commit 18cd311325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,7 +11,7 @@ download_for_directory() {
for f in *; do
if [[ -d ${f} ]]; then
download_for_directory ${f} &
download_for_directory "./${f}" &
fi
done

Loading…
Cancel
Save