Skip to content

Commit

Permalink
fix: execution triangle mac support (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored Oct 23, 2022
1 parent 7943d67 commit 9cd7f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engines/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ impl<'a> CmdPool<'a> {
let cmd = &self.cmds[&id];
self.cmd_execs.insert(*id, exec_num);
if let Some(name) = &cmd.name {
println!("\x1b[1m🞂 {}\x1b[0m", name);
println!("\x1b[1m {}\x1b[0m", name);
}
for target in &cmd.targets {
let target_path = Path::new(target);
Expand Down

0 comments on commit 9cd7f4c

Please sign in to comment.