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

install.sh: Fallback to using cargo (#639)

This commit is contained in:
Patrick Jackson 2022-12-16 10:11:58 -07:00 committed by GitHub
parent 1d9ce94f96
commit 25a2732817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,8 +87,9 @@ __atuin_install_linux(){
else
if ! command -v lsb_release &> /dev/null; then
echo "lsb_release could not be found, unable to determine your distribution"
echo "If you are using Arch Linux, please get community/lsb-release"
exit 1
echo "If you are using Arch Linux, please get community/lsb-release or install Atuin using pacman"
echo
__atuin_install_unsupported
fi
OS=$(lsb_release -i | awk '{ print $3 }')
fi
@ -158,7 +159,7 @@ __atuin_install_unsupported(){
echo "If you have any problems, please open an issue!"
while true; do
read -r -p "Do you wish to attempt an install with 'cargo'?" yn
read -r -p "Do you wish to attempt an install with 'cargo'? [Y/N] " yn
case $yn in
[Yy]* ) __atuin_install_cargo; break;;
[Nn]* ) exit;;