ubuntu_setup.sh: add option to continue on unsupported os

pull/22889/merge
Adeeb Shihadeh 2021-11-16 14:30:51 -08:00
parent d8a5c415cd
commit 0674726cf4
1 changed files with 6 additions and 1 deletions

View File

@ -104,7 +104,12 @@ if [ -f "/etc/os-release" ]; then
;;
*)
echo "$ID $VERSION_ID is unsupported. This setup script is written for Ubuntu 20.04."
exit 1
read -p "Would you like to attempt installation anyway? " -n 1 -r
echo ""
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
exit 1
fi
install_ubuntu_lts_requirements
esac
else
echo "No /etc/os-release in the system"