1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-09 03:53:48 -05:00

Iterate over just for actual files

This commit is contained in:
Yamashita Yuu
2014-06-12 20:37:40 +09:00
parent 5c91bc981c
commit 5931001cab

View File

@@ -1256,6 +1256,7 @@ verify_python() {
# Create symlinks
local suffix="${1##python}"
local file link
shopt -s nullglob
for file in "${PREFIX_PATH}/bin"/*; do
if [[ "${file##*/}" == *"${suffix}" ]]; then
if [[ "${file}" == *"-${suffix}" ]]; then
@@ -1268,6 +1269,7 @@ verify_python() {
fi
fi
done
shopt -u nullglob
if [ ! -x "${PYTHON_BIN}" ]; then
{ colorize 1 "ERROR"