chore: format

This commit is contained in:
əlemi 2024-02-15 04:19:35 +01:00
parent e59a5a34ff
commit 6f6e9e24b4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -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");