Browse Source

filename

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
63961792fc
  1. 2
      functions/core_dl.sh

2
functions/core_dl.sh

@ -43,7 +43,7 @@ dl_md5=$4
if [ ! -f "${dl_filepath}/${dl_filename}" ]||[ -n "${retry_dl}" ]; then if [ ! -f "${dl_filepath}/${dl_filename}" ]||[ -n "${retry_dl}" ]; then
echo -ne "downloading ${dl_filename}...\c" echo -ne "downloading ${dl_filename}...\c"
local dl=$(curl --fail -o "${dl_filepath}" "${dl_url}") local dl=$(curl --fail -o "${dl_filepath}/${dl_filename}" "${dl_url}")
local exitcode=$? local exitcode=$?
if [ ${exitcode} -ne 0 ]; then if [ ${exitcode} -ne 0 ]; then
fn_printfaileol fn_printfaileol

Loading…
Cancel
Save