From 6a7141609717e466fbeb14f0deff914f62c1d5cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A7=84=EC=9E=AC=EC=97=B0?= Date: Tue, 24 Dec 2024 11:05:19 +0900 Subject: [PATCH] fix: Ignore PS1 file for Elixir 1.18 when asdf reshim --- lib/utils.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/utils.bash b/lib/utils.bash index a36ed1e89..dea4ce1af 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -620,6 +620,8 @@ plugin_executables() { if is_executable "$executable_file"; then if [[ "$executable_file" == *".exe" ]]; then executable_file=${executable_file::-4} + elif [[ "$executable_file" == *".ps1" ]]; then + continue fi printf "%s\n" "$executable_file" fi