From 747c799a8b6a6112fde8d4afbd08e77b45230c86 Mon Sep 17 00:00:00 2001 From: Termuellinator Date: Thu, 23 Jun 2022 10:01:59 +0200 Subject: [PATCH] more general message on zstd dependency check --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 127c210..f54459a 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -67,8 +67,8 @@ if [ ! -x "$(command -v curl)" ]; then fi if [ ! -x "$(command -v zstd)" ]; then # Print to stderr and also try warning the user through notify-send - printf "lug-helper.sh: The package 'zstd' was not found on this system. You won't be able to install Runners from TKG.\n" 1>&2 - notify-send "lug-helper" "The package 'zstd' was not found on this system. You won't be able to install Runners from TKG.\n" --icon=dialog-warning + printf "lug-helper.sh: The package 'zstd' was not found on this system. It is required for extracting some runner packages.\n" 1>&2 + notify-send "lug-helper" "The package 'zstd' was not found on this system. It is required for extracting some runner packages.\n" --icon=dialog-warning exit 1 fi if [ ! -x "$(command -v mktemp)" ] || [ ! -x "$(command -v sort)" ] || [ ! -x "$(command -v basename)" ] || [ ! -x "$(command -v realpath)" ] || [ ! -x "$(command -v dirname)" ]; then