From d4c14e215866779acac8e53aa056e3c1320b43f4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 4 May 2017 19:13:07 +0100 Subject: [PATCH] using selfname --- lgsm/functions/command_update_functions.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_update_functions.sh b/lgsm/functions/command_update_functions.sh index 98de90669..05c19566a 100644 --- a/lgsm/functions/command_update_functions.sh +++ b/lgsm/functions/command_update_functions.sh @@ -26,7 +26,7 @@ else fn_print_ok_eol_nl fi -echo -ne " checking linuxgsm.sh...\c" +echo -ne " checking remote linuxgsm.sh...\c" tmp_script_diff=$(diff "${tmpdir}/linuxgsm.sh" <(${curlpath} -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/linuxgsm.sh")) if [ "${tmp_script_diff}" != "" ]; then fn_print_update_eol_nl @@ -37,9 +37,10 @@ if [ "${tmp_script_diff}" != "" ]; then else fn_print_ok_eol_nl fi +echo -ne " checking ${selfname}...\c" script_diff=$(diff <(sed '/shortname/d;/servername/d;/gamename/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/servername/d;/gamename/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then - echo -ne " backup linuxgsm.sh...\c" + echo -ne " backup ${selfname}...\c" cp "${rootdir}/${selfname}" "${tmpdir}/${selfname}-$(date +"%m_%d_%Y_%M").bak" if [ $? -ne 0 ]; then fn_print_fail_eol_nl