Skip to content

Commit

Permalink
fix: Ignore PS1 file for Elixir 1.18 when asdf reshim
Browse files Browse the repository at this point in the history
  • Loading branch information
진재연 committed Jan 2, 2025
1 parent 4504dfb commit 6a71416
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6a71416

Please sign in to comment.