1
1
mirror of https://github.com/ellie/atuin.git synced 2024-08-17 17:00:33 +03:00

install.sh - add endeavouros to archlinux detection (#827)

This commit is contained in:
Ch. (Chanwhi Choi) 2023-03-29 17:25:10 +09:00 committed by GitHub
parent 0f139044b4
commit f3a3f1c774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ __atuin_install_linux(){
else
OS=$(lsb_release -i | awk '{ print $3 }' | tr '[:upper:]' '[:lower:]')
fi
if [ "$OS" == "arch" ] || [ "$OS" == "manjarolinux" ]; then
if [ "$OS" == "arch" ] || [ "$OS" == "manjarolinux" ] || [ "$OS" == "endeavouros" ]; then
__atuin_install_arch
elif [ "$OS" == "ubuntu" ] || [ "$OS" == "ubuntuwsl" ] || [ "$OS" == "debian" ] || [ "$OS" == "linuxmint" ] || [ "$OS" == "parrot" ] || [ "$OS" == "kali" ] || [ "$OS" == "elementary" ] || [ "$OS" == "pop" ]; then
__atuin_install_ubuntu