diff --git a/theseus/examples/download-pack.rs b/theseus/examples/download-pack.rs index 084bb44c8..3488fa1f1 100644 --- a/theseus/examples/download-pack.rs +++ b/theseus/examples/download-pack.rs @@ -45,7 +45,7 @@ pub async fn main() { ); let start = Instant::now(); - fetch_modpack(&args.url, args.hash.as_deref(), &dest, ModpackSide::Client).await; + fetch_modpack(&args.url, args.hash.as_deref(), &dest, ModpackSide::Client).await.unwrap(); let end = start.elapsed(); println!("Download completed in {} seconds", end.as_secs_f32());