From 6f6e9e24b408f34c341cdfa24d71a80d181d367f Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 15 Feb 2024 04:19:35 +0100 Subject: [PATCH] chore: format --- src/tci.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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");