Skip to content

Commit 155aea2

Browse files
committed
Fix command styling
1 parent 6499222 commit 155aea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/src/output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub fn print_error(title: impl AsRef<str>, body: impl Into<BuildpackOutputText>)
3939
}
4040

4141
pub fn run_command(mut command: Command, quiet: bool) -> Result<Output, CmdError> {
42-
let title = format!("Running {}", style::value(command.name()));
42+
let title = format!("Running {}", style::command(command.name()));
4343
if quiet {
4444
let timer = print::sub_start_timer(title);
4545
let output = command.named_output();

0 commit comments

Comments
 (0)