Browse Source

uf will fail if remote file missing #983

pull/990/head
Daniel Gibbs 9 years ago
parent
commit
24d73787cd
  1. 3
      lgsm/functions/core_dl.sh
  2. 1
      lgsm/functions/core_exit.sh

3
lgsm/functions/core_dl.sh

@ -130,8 +130,8 @@ fn_fetch_file(){
if [ -f "${scriptlog}" ]; then
fn_script_log_fatal "downloading ${filename}: FAIL"
fi
echo -e "${fileurl}" | tee -a "${scriptlog}"
echo "${curlcmd}" | tee -a "${scriptlog}"
echo -e "${fileurl}\n" | tee -a "${scriptlog}"
core_exit.sh
else
fn_print_ok_eol_nl
@ -208,6 +208,7 @@ fn_fetch_function(){
}
fn_update_function(){
exitbypass=1
github_file_url_dir="lgsm/functions" # github dir containing the file
github_file_url_name="${functionfile}" # name of the github file
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}"

1
lgsm/functions/core_exit.sh

@ -35,4 +35,3 @@ else
trap - INT
exit ${exitcode}
fi

Loading…
Cancel
Save