diff --git a/Cargo.lock b/Cargo.lock index 5a2f1be1..58881e0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -813,9 +813,9 @@ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" [[package]] name = "powershell_script" -version = "0.3.2" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a5a338783191ce961183e8fbca5a4d2902b2595260cecfb55f61f083cdff865" +checksum = "9d5c8599ccb442b80c8c04437bcbcac2f76ff34d7b658b759fb26744dcab6c03" [[package]] name = "ppv-lite86" diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index c718ed61..36d01eea 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -21,7 +21,7 @@ fs-tail = "0.1" heck = "0.4" lazy_static = "1" paste = "1" -powershell_script = "0.3" +powershell_script = "1.0" serde = { version = "1", features = ["derive"] } serde_json = "1" serde_yaml = "0.8" diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 556a3195..306f10e3 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -922,7 +922,7 @@ fn main() -> Result<()> { }, ); - match powershell_script::run(&script, true) { + match powershell_script::run(&script) { Ok(output) => { println!("{}", output); }