Unset CDPATH for duration of bootstrap script

CDPATH causes the `cd` command to output the directory it's going into
sometimes.

This actually fixes #849, I got bit by this
This commit is contained in:
Marco Sirabella 2020-07-10 19:30:16 -04:00
parent 5659366bf6
commit 982dee5978
No known key found for this signature in database
GPG Key ID: 350CE23EFB20D1A7

View File

@ -6,6 +6,9 @@ if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then
exit 1
fi
# see #849
unset CDPATH
########################################
# Common meta-language implementation. Syntax:
#