We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffebde commit e8b5dd8Copy full SHA for e8b5dd8
1 file changed
src/main.rs
@@ -529,6 +529,8 @@ fn change_game_data(config: &GameConfig) -> Result<()> {
529
let dl = download_url(url)?;
530
let format = match dl.extension.as_deref() {
531
Some("7z") => archive::Format::SevenZip,
532
+ Some("zip") => archive::Format::Zip,
533
+ Some("rar") => archive::Format::Rar,
534
Some(ext) => unimplemented!("Unknown archive extension: {}", ext),
535
None => unimplemented!("Failed to detect archive extension"),
536
};
0 commit comments