瀏覽代碼

log message

Daniel Gibbs 10 年之前
父節點
當前提交
aaf346a9f4
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      lgsm/functions/command_update_functions.sh

+ 2 - 0
lgsm/functions/command_update_functions.sh

@@ -40,10 +40,12 @@ if [ -n "${functionsdir}" ]; then
 			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
 				fn_print_update_eol_nl
+				fn_script_log_pass "${functionfile}: UPDATE"
 				rm -rf "${functionsdir}/${functionfile}"
 				fn_update_function
 			else
 				fn_print_ok_eol_nl
+				fn_script_log_pass "${functionfile}: NO UPDATE"
 			fi
 		done
 	fi