Browse Source

messages

pull/914/head
Daniel Gibbs 9 years ago
parent
commit
dd19587e3e
  1. 6
      lgsm/functions/command_update_functions.sh

6
lgsm/functions/command_update_functions.sh

@ -35,23 +35,21 @@ if [ -n "${functionsdir}" ]; then
cd "${functionsdir}"
for functionfile in *
do
echo -ne " checking ${functionfile}..."
echo -ne " checking ${functionfile}...\c"
function_file_diff=$(diff "${functionsdir}/${functionfile}" <(${curlcmd} -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${functionfile}"))
if [ "${function_file_diff}" != "" ]; then
${curlcmd} -s --fail -o "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${functionfile}"
local exitcode=$?
if [ "${exitcode}" != "0" ]; then
echo -ne " checking ${functionfile}...\c"
fn_print_fail_eol_nl
rm -rfv "${functionsdir}/${functionfile}"
exitcode=2
else
echo -ne " checking ${functionfile}...\e[0;33mUPDATE\e[0m"
echo -ne "\e[0;33mUPDATE\e[0m"
rm -rfv "${functionsdir}/${functionfile}"
fn_update_function
fi
else
echo -ne " checking ${functionfile}...\c"
fn_print_ok_eol_nl
fi
done

Loading…
Cancel
Save