Skip to content

Commit

Permalink
bump version to 0.0.7
Browse files Browse the repository at this point in the history
Man I haven't written code in a while...
  • Loading branch information
TrainDoctor committed Feb 2, 2025
1 parent d650c41 commit 80d56ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion src/cli/plugin/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 80d56ec

Please sign in to comment.