Skip to content

Commit

Permalink
nix_rs: Fix extra whitespace in cmd logging
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Sep 13, 2023
1 parent 755749f commit 6222222
Show file tree
Hide file tree
Showing 3 changed files with 3 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 crates/nix_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition.workspace = true
name = "nix_rs"
version = "0.1.7"
version = "0.1.8"
license.workspace = true
repository.workspace = true
description = "Rust library for interacting with the Nix command"
Expand Down
2 changes: 1 addition & 1 deletion crates/nix_rs/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Default for NixCmd {
#[instrument(name = "command")]
pub fn trace_cmd(cmd: &tokio::process::Command) {
use colored::Colorize;
tracing::info!("🐚 {}️", to_cli(cmd).bright_green().on_black());
tracing::info!("🐚 {}️", to_cli(cmd).bright_blue());
}

#[cfg(feature = "ssr")]
Expand Down

0 comments on commit 6222222

Please sign in to comment.