fix(shellcheck): correct useless echos SC2005

https://www.shellcheck.net/wiki/SC2005
This commit is contained in:
Martin Wimpress 2024-05-06 21:59:48 +01:00 committed by Martin Wimpress
parent 3f72f6fd47
commit ec7d2886e9
1 changed files with 2 additions and 2 deletions

View File

@ -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() {