From 1622dc0add017a6322add9361741a57224436fee Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Thu, 19 Nov 2020 21:11:21 -0500 Subject: [PATCH] only install packages if we must --- bin/ubuntu_connect_bubble | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ubuntu_connect_bubble b/bin/ubuntu_connect_bubble index ad5b7a33..d46279fc 100755 --- a/bin/ubuntu_connect_bubble +++ b/bin/ubuntu_connect_bubble @@ -90,10 +90,10 @@ The following apt packages will be installed: Press Enter to continue with installation, or Control-C to exit" read -r DUMMY || die "Bubble connection canceled" -fi -# Do not quote INSTALL_PACKAGES, we want to install all packages... -sudo apt update && sudo apt install -y ${INSTALL_PACKAGES} || die "Error installing packages: ${INSTALL_PACKAGES}" + # Do not quote INSTALL_PACKAGES, we want to install all packages... + sudo apt update && sudo apt install -y ${INSTALL_PACKAGES} || die "Error installing packages: ${INSTALL_PACKAGES}" +fi ARG_HOST="${1}" if [[ -z "${ARG_HOST}" ]] ; then