Skip to content

Commit a691489

Browse files
committed
fix install-binaries
1 parent e1bc7c1 commit a691489

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geode"
3-
version = "2.4.2"
3+
version = "2.4.3"
44
authors = ["HJfod <[email protected]>", "Camila314 <[email protected]>"]
55
edition = "2021"
66
build = "build.rs"

src/sdk.rs

+5
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,11 @@ fn install_binaries(config: &mut Config) {
417417

418418
let mut target_url: Option<String> = None;
419419
for asset in res.assets {
420+
// skip installers
421+
if asset.name.to_lowercase().contains("installer") {
422+
continue;
423+
}
424+
420425
#[cfg(any(target_os = "windows", target_os = "linux"))]
421426
if asset.name.to_lowercase().contains("win") {
422427
target_url = Some(asset.browser_download_url);

0 commit comments

Comments
 (0)