From 9de23ebeb312486bdbef36718eea6e1b0d4ea9a3 Mon Sep 17 00:00:00 2001 From: "committer@t470p" Date: Wed, 27 Nov 2024 05:59:03 -0500 Subject: [PATCH] / wip --- scripts/99_software.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/99_software.sh b/scripts/99_software.sh index 87c3a33..9a5eb55 100755 --- a/scripts/99_software.sh +++ b/scripts/99_software.sh @@ -194,10 +194,10 @@ if [ ${operation} == "install" ] ; then param_check "${parameter}" "no package name given" if [[ "$parameter" =~ ^aur:* ]]; then - echo "Install AUR package" + echo "Install AUR package '${parameter}'" sudo -u ${user} bash -c 'yay -S --needed --noconfirm --timeupdate ${parameter}' else - echo "Install Arch package" + echo "Install Arch package '${parameter}'" pacman -S ${parameter} fi