From f732744910401a035a1e7d047a824c45f50f04ed Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 20 Feb 2016 17:56:16 +0000 Subject: [PATCH] Altered how source is run --- functions/core_dl.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/functions/core_dl.sh b/functions/core_dl.sh index f1a416638..91c9d02c4 100644 --- a/functions/core_dl.sh +++ b/functions/core_dl.sh @@ -122,16 +122,19 @@ if [ ! -f "${filedir}/${filename}" ]; then echo -e "" exit 1 fi - fn_dl_md5 # make file executable if run is set if [ "${run}" == "run" ]; then chmod +x "${filedir}/${filename}" - fi -fi -# run file if run is set -if [ "${run}" == "run" ]; then - source "${filedir}/${filename}" + fi fi + +if [ -f "${filedir}/${filename}" ]; then + fn_dl_md5 + # run file if run is set + if [ "${run}" == "run" ]; then + source "${filedir}/${filename}" + fi +fi }