From 6225c2004a5de60b401eead5960ec5ca9c1555d1 Mon Sep 17 00:00:00 2001 From: David Kebler Date: Fri, 11 Nov 2022 02:48:26 -0800 Subject: [PATCH] fix - improve display alert for installing basic packages on host to indicate the installation occurs on host not in container. (#4410) Co-authored-by: kebler.net --- lib/functions/host/basic-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/host/basic-deps.sh b/lib/functions/host/basic-deps.sh index 244893c3b6..81155a125b 100644 --- a/lib/functions/host/basic-deps.sh +++ b/lib/functions/host/basic-deps.sh @@ -22,7 +22,7 @@ prepare_host_basic() { done if [[ -n $install_pack ]]; then - display_alert "Installing basic packages" "$install_pack" + display_alert "Updating and installing basic packages on host" "$install_pack" sudo bash -c "apt-get -qq update && apt-get install -qq -y --no-install-recommends $install_pack" fi