tangled
alpha
login
or
join now
regnault.dev
/
webfishing-macos-installer
0
fork
atom
A native webfishing installer for macos
0
fork
atom
overview
issues
pulls
pipelines
1.4.2 - GodotSteam url changed
regnault.dev
4 months ago
55fe95d0
4287b8c3
+2
-1
1 changed file
expand all
collapse all
unified
split
src
main.rs
+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
62
-
"https://github.com/GodotSteam/GodotSteam/releases/download/v3.24/macos-g353-s159-gs324.zip",
62
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
+
92
93
Command::new("rm")
93
94
.current_dir(template_path)
94
95
.arg("Contents/MacOS/godot_osx_debug.universal")