diff --git a/Cargo.lock b/Cargo.lock index 60bd685..33ccb5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "decky" -version = "0.0.6" +version = "0.0.7" dependencies = [ "anyhow", "boolinator", diff --git a/Cargo.toml b/Cargo.toml index 8f33d5f..3a4c019 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "decky" -version = "0.0.6" +version = "0.0.7" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/cli/plugin/build.rs b/src/cli/plugin/build.rs index 39b0045..3f57b48 100644 --- a/src/cli/plugin/build.rs +++ b/src/cli/plugin/build.rs @@ -119,7 +119,9 @@ impl Builder { let mut any_binaries: bool = false; let mut remote_binary_bundling: bool = false; if json["remote_binary_bundling"].as_bool().is_some() { - remote_binary_bundling = true; + if json["remote_binary_bundling"].as_bool().unwrap() == true { + remote_binary_bundling = true + } } if let Some(remote_binary) = json["remote_binary"].as_array() { if !remote_binary.is_empty() {