Skip to content

Commit

Permalink
fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kuruk-mm committed Feb 25, 2025
1 parent 4fdf533 commit 5927650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install_dependency.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn get_godot_url() -> Option<String> {

let os_url = match (os, arch) {
("linux", "x86_64") => Some("linux_editor.x86_64.zip".to_string()),
("windows", "x86_64") => Some("windows_editor.exe.zip".to_string()),
("windows", "x86_64") => Some("windows_editor_x86_64.exe.zip".to_string()),
("macos", _) => Some("godot.macos.editor.universal.zip".to_string()),
_ => None,
}?;
Expand Down

0 comments on commit 5927650

Please sign in to comment.