diff --git a/src/tci.rs b/src/tci.rs index 840d5a5..8c6bfe8 100644 --- a/src/tci.rs +++ b/src/tci.rs @@ -45,7 +45,7 @@ impl Tci { pub fn run(&self) -> TciResult<()> { // run hooks for hook in &self.cfg.hooks { - println!("[*] running hook ({hook})"); + println!("[-] running hook ({hook})"); Tci::exec(&self.repo.path, hook)?; } @@ -61,7 +61,7 @@ impl Tci { return Err(TciErr::Missing); } - println!("[=] running tci script for {}", self.repo.name); + println!("[+] running tci script for {}", self.repo.name); Tci::exec(env.path(), tci_path)?; println!("[o] tci complete");