From 413d1d03e9620d99ad274be8cb76ca7089edbc62 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sat, 15 Aug 2026 19:35:01 +0300 Subject: [PATCH] Add mkdir to path_without essentials --- test/test_helper.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.bash b/test/test_helper.bash index f4c452c6..c989de67 100644 --- a/test/test_helper.bash +++ b/test/test_helper.bash @@ -165,7 +165,7 @@ path_without() { if [ "$found" != "${PYENV_ROOT}/shims" ]; then alt="${PYENV_TEST_DIR}/$(echo "${found#/}" | tr '/' '-')" mkdir -p "$alt" - for util in bash head cut readlink greadlink tr sed xargs basename sort; do + for util in basename bash cut greadlink head mkdir readlink sed sort tr xargs; do if [ -x "${found}/$util" ]; then ln -s "${found}/$util" "${alt}/$util" fi