From 9b2b65bb2877a754d884795d3d72768d0af8655c Mon Sep 17 00:00:00 2001 From: hugmouse Date: Wed, 19 Jun 2024 18:15:04 +0200 Subject: [PATCH] fix: spacing for curl and wget messages --- yabs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yabs.sh b/yabs.sh index 955c079..c42dc35 100644 --- a/yabs.sh +++ b/yabs.sh @@ -42,9 +42,9 @@ done # Check for curl/wget if check_command "curl"; then LOCAL_CURL=true - echo -e "curl : \xE2\x9C\x94 installed" + echo -e "curl : \xE2\x9C\x94 installed" elif check_command "wget"; then - echo -e "wget : \xE2\x9C\x94 installed" + echo -e "wget : \xE2\x9C\x94 installed" else echo -e "curl/wget : \xE2\x9D\x8C not installed" echo -e "\nError: Neither 'curl' nor 'wget' command found. Please install one of those to continue."