Skip to content

Commit

Permalink
Merge pull request #55 from tsirysndr/fix/redirect-stderr
Browse files Browse the repository at this point in the history
fix: redirect 'systemctl' check stderr to /dev/null
  • Loading branch information
tsirysndr authored Apr 3, 2024
2 parents f5518a9 + 7fa9ead commit 326bfb2
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ version = "0.2.18"
anyhow = "1.0.71"
clap = "3.2.20"
envhub-ext = {path = "../ext", version = "0.1.1"}
envhub-hm = {path = "../hm", version = "0.2.4"}
envhub-pkgs = {path = "../pkgs", version = "0.1.4"}
envhub-hm = {path = "../hm", version = "0.2.5"}
envhub-pkgs = {path = "../pkgs", version = "0.1.5"}
envhub-providers = {path = "../providers", version = "0.2.0"}
envhub-stow = {path = "../stow", version = "0.1.0"}
envhub-types = {path = "../types", version = "0.2.2"}
Expand Down
2 changes: 1 addition & 1 deletion crates/hm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "shell", "environment", "dotfiles"]
license = "MIT"
name = "envhub-hm"
repository = "https://github.com/tsirysndr/envhub"
version = "0.2.4"
version = "0.2.5"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion crates/hm/src/nix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn install() -> Result<(), Error> {
);
let mut child = Command::new("sh")
.arg("-c")
.arg("type systemctl > /dev/null")
.arg("type systemctl > /dev/null 2> /dev/null")
.spawn()?;
let status = child.wait()?;
let init = match status.code() {
Expand Down
2 changes: 1 addition & 1 deletion crates/pkgs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "shell", "environment", "dotfiles"]
license = "MIT"
name = "envhub-pkgs"
repository = "https://github.com/tsirysndr/envhub"
version = "0.1.4"
version = "0.1.5"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion crates/pkgs/src/nix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl PackageManager for Nix {
);
let mut child = Command::new("sh")
.arg("-c")
.arg("type systemctl > /dev/null")
.arg("type systemctl > /dev/null 2> /dev/null")
.spawn()?;
let status = child.wait()?;
let init = match status.code() {
Expand Down

0 comments on commit 326bfb2

Please sign in to comment.