From 661e579dbe2894ce8be8878ee70537274c4ad9a4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 28 Feb 2016 16:05:19 +0000 Subject: [PATCH] Corrected if --- functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/core_dl.sh b/functions/core_dl.sh index cf3a2d777..959161a27 100644 --- a/functions/core_dl.sh +++ b/functions/core_dl.sh @@ -20,7 +20,7 @@ lgsm_version="050216" fn_dl_md5(){ # Runs MD5 Check if available -if [ -n "${md5}" ]||[ "${md5}" == "nomd5" ]; then +if [ -n "${md5}" ]||[ "${md5}" != "nomd5" ]; then echo -ne "verifying ${filename} with MD5..." sleep 1 local md5sumcmd=$(md5sum "${filedir}/${filename}"|awk '{print $1;}')