From 2dd5be1b4e12f72bcf89b91ceed06e801afc89c8 Mon Sep 17 00:00:00 2001 From: Dan Rousseau Date: Thu, 6 Jun 2024 08:14:47 +0200 Subject: [PATCH] chore: Update install.sh to support PopOS --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index edca949e5..7e417fae5 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -17,6 +17,11 @@ if [ "$OS_TYPE" = "manjaro" ]; then OS_TYPE="arch" fi +# Check if the OS is popOS, if so, change it to ubuntu +if [ "$OS_TYPE" = "pop" ]; then + OS_TYPE="ubuntu" +fi + if [ "$OS_TYPE" = "arch" ]; then OS_VERSION="rolling" else