Skip to content

Commit

Permalink
fix stderr not showing up
Browse files Browse the repository at this point in the history
Missed this in the last bug fix PR.
YAVB (Yet another version bump)

Signed-off-by: Dylan Turner <dylantdmt@gmail.com>
  • Loading branch information
Dylan Turner committed Jan 26, 2023
1 parent 1166aee commit 81e9361
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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,7 +1,7 @@
[package]
name = "aipman"
authors = [ "Dylan Turner <dylantdmt@gmail.com>" ]
version = "5.0.0"
version = "6.0.0"
edition = "2021"
license = "GPL-3.0"
description = "The AppImage Package Manager"
Expand Down
1 change: 1 addition & 0 deletions src/pkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
Expand Down

0 comments on commit 81e9361

Please sign in to comment.