Skip to content

Commit

Permalink
fix(chore): change make command color
Browse files Browse the repository at this point in the history
  • Loading branch information
kyu08 committed Jun 13, 2024
1 parent 242ecb5 commit 69e1ff8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/usecase/execute_make_command.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use std::process;

use colored::Colorize;
use std::process;

pub fn execute_make_target(t: &String) {
println!("{}", ("make ".to_string() + t).blue());
println!("{}", ("make ".to_string() + t).truecolor(161, 220, 156));
process::Command::new("make")
.stdin(process::Stdio::inherit())
.arg(t)
Expand Down

0 comments on commit 69e1ff8

Please sign in to comment.