You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The detailed report depended on async downloading which is gone and the
current reporting is a single line print, not worth maintaining this
command line option for.
let res = ue_rs::download_and_hash(&client, url.clone(),&path,Some(expected_sha256.clone()),None,false).context(format!("download_and_hash({url:?}) failed"))?;
83
+
let res = ue_rs::download_and_hash(&client, url.clone(),&path,Some(expected_sha256.clone()),None).context(format!("download_and_hash({url:?}) failed"))?;
let r = ue_rs::download_and_hash(client, input_url.clone(), path,None,None, print_progress).context(format!("unable to download data(url {:?})", input_url))?;
258
+
let r = ue_rs::download_and_hash(client, input_url.clone(), path,None,None).context(format!("unable to download data(url {:?})", input_url))?;
0 commit comments