From 81e9361bcc2606d35ea7fa99a8dafd552f46dbbe Mon Sep 17 00:00:00 2001 From: Dylan Turner Date: Thu, 26 Jan 2023 13:02:07 -0600 Subject: [PATCH] fix stderr not showing up Missed this in the last bug fix PR. YAVB (Yet another version bump) Signed-off-by: Dylan Turner --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/pkg.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 61fbf69..204db4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aipman" -version = "5.0.0" +version = "6.0.0" dependencies = [ "clap", "dirs", diff --git a/Cargo.toml b/Cargo.toml index a6b104e..35c1842 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aipman" authors = [ "Dylan Turner " ] -version = "5.0.0" +version = "6.0.0" edition = "2021" license = "GPL-3.0" description = "The AppImage Package Manager" diff --git a/src/pkg.rs b/src/pkg.rs index 8f568f1..4159f66 100644 --- a/src/pkg.rs +++ b/src/pkg.rs @@ -102,6 +102,7 @@ impl Package { Command::new(file_name).args(args) .stdin(Stdio::inherit()) .stdout(Stdio::inherit()) + .stderr(Stdio::inherit()) .output().expect("Failed to start app"); } }