alien
alien copied to clipboard
fix user cd collision
Some users have their own custom cd script
cd() {
builtin cd $1 && ls
}
and because alien uses normal cd, it produces unexpected behaviors:
https://user-images.githubusercontent.com/12099108/174499595-e0733c0f-a793-427b-b234-67a2b747a54b.mov
this pr prevent this from happening by using builtin cd
instead
I cannot merge this: