mirror of
https://git.alemi.dev/tci.git
synced 2024-11-10 02:59:19 +01:00
chore: format
This commit is contained in:
parent
e59a5a34ff
commit
6f6e9e24b4
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Reference in a new issue