From 4e2e9539129eed524c624be5e7cc710cf7de286a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 11 May 2017 23:06:56 +0100 Subject: [PATCH] corrected type if to dev/null errors the errors should not appear as it was breaking the if statement --- lgsm/functions/core_functions.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index c319cd55a..a417ca36c 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -9,7 +9,7 @@ core_dl.sh(){ functionfile="${FUNCNAME}" -if [ "$(type fn_fetch_core_dl)" ];then +if [ "$(type fn_fetch_core_dl 2>/dev/null)" ];then fn_fetch_core_dl "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" else fn_bootstrap_fetch_file_github "lgsm/functions" "core_dl.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" @@ -18,7 +18,7 @@ fi core_messages.sh(){ functionfile="${FUNCNAME}" -if [ "$(type fn_fetch_core_dl)" ];then +if [ "$(type fn_fetch_core_dl 2>/dev/null)" ];then fn_fetch_core_dl "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" else fn_bootstrap_fetch_file_github "lgsm/functions" "core_messages.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" @@ -27,7 +27,7 @@ fi core_legacy.sh(){ functionfile="${FUNCNAME}" -if [ "$(type fn_fetch_core_dl)" ];then +if [ "$(type fn_fetch_core_dl 2>/dev/null)" ];then fn_fetch_core_dl "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" else fn_bootstrap_fetch_file_github "lgsm/functions" "core_legacy.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5"