From b60850d1b2fa5cd72e9a61d27897e45b654da153 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Fri, 30 Jul 2021 15:54:55 -0500 Subject: [PATCH] Fix add-apt-repository for Linux Mint --- guac-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guac-install.sh b/guac-install.sh index a47a43f..46a065f 100755 --- a/guac-install.sh +++ b/guac-install.sh @@ -217,7 +217,7 @@ source /etc/os-release if [[ "${NAME}" == "Ubuntu" ]] || [[ "${NAME}" == "Linux Mint" ]]; then # Ubuntu > 18.04 does not include universe repo by default # Add the "Universe" repo, don't update - add-apt-repository -yn universe + add-apt-repository -y universe # Set package names depending on version JPEGTURBO="libjpeg-turbo8-dev" if [[ "${VERSION_ID}" == "16.04" ]]; then