From 746ecb71ad2cb354d9449226c9d0bbf102acf85f Mon Sep 17 00:00:00 2001 From: Will Martin Date: Sun, 17 Aug 2025 00:39:32 -0400 Subject: [PATCH 1/2] Update install.sh to support PopOS --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f1647a15f..c89447a42 100755 --- a/install.sh +++ b/install.sh @@ -204,7 +204,7 @@ install_otp_linux() { esac id=$(grep '^ID=' /etc/os-release | cut -d '=' -f 2) - if [ "${id}" != ubuntu ]; then + if [[ "${id}" != ubuntu || "${id}" != pop ]]; then echo $id is not supported exit 1 fi From 5de7cca373e8d872c93750892de00fb68d939410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Fri, 28 Nov 2025 22:52:19 +0100 Subject: [PATCH 2/2] Update install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c89447a42..1508b0874 100755 --- a/install.sh +++ b/install.sh @@ -204,7 +204,7 @@ install_otp_linux() { esac id=$(grep '^ID=' /etc/os-release | cut -d '=' -f 2) - if [[ "${id}" != ubuntu || "${id}" != pop ]]; then + if [ "${id}" != ubuntu ] && [ "${id}" != pop ]; then echo $id is not supported exit 1 fi