A native webfishing installer for macos

1.4.2 - GodotSteam url changed

+2 -1
+2 -1
src/main.rs
··· 59 59 async fn download_godot_steam_template() { 60 60 println!("Downloading GodotSteam template..."); 61 61 let res = reqwest::get( 62 - "https://github.com/GodotSteam/GodotSteam/releases/download/v3.24/macos-g353-s159-gs324.zip", 62 + "https://codeberg.org/godotsteam/godotsteam/releases/download/v3.24/macos-g353-s159-gs324.zip", 63 63 ) 64 64 .await 65 65 .expect("Could not download godotsteam template"); ··· 89 89 90 90 fn build_webfishing_macos(webfishing_path: &Path) { 91 91 let template_path = Path::new("build/osx_template.app"); 92 + 92 93 Command::new("rm") 93 94 .current_dir(template_path) 94 95 .arg("Contents/MacOS/godot_osx_debug.universal")