From ec7d2886e9f29b50139d30deabb68866ea64686d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 6 May 2024 21:59:48 +0100 Subject: [PATCH] fix(shellcheck): correct useless echos SC2005 https://www.shellcheck.net/wiki/SC2005 --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index ef64ac3..b17587b 100755 --- a/quickget +++ b/quickget @@ -152,12 +152,12 @@ function show_os_info() { } function pretty_name() { - echo $(show_os_info -1 "${1}") + show_os_info -1 "${1}" } # Just in case quickget want use it function os_homepage(){ - echo $(show_os_info -4 "${1}") + show_os_info -4 "${1}" } function error_specify_os() {