1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-12 05:23:47 -05:00

Use read -a to split output into an array (#1450)

This commit is contained in:
Mislav Marohnić
2022-10-09 14:48:13 +02:00
committed by GitHub
parent 90c0357682
commit 8275e15cb0
8 changed files with 14 additions and 19 deletions

View File

@@ -8,10 +8,9 @@ if [ -z "$RBENV_VERSION" ]; then
RBENV_VERSION="$(rbenv-version-file-read "$RBENV_VERSION_FILE" || true)"
fi
OLDIFS="$IFS"
IFS=$'\n' scripts=(`rbenv-hooks version-name`)
IFS="$OLDIFS"
IFS=$'\n' read -d '' -r -a scripts <<<"$(rbenv-hooks version-name)" || true
for script in "${scripts[@]}"; do
# shellcheck disable=SC1090
source "$script"
done