duration after

This commit is contained in:
alessio 2016-08-20 18:53:30 +02:00
parent 1378977c51
commit c74415dd80
1 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
Fail(p.Name + ": "+err.Error())
wr.Done()
} else {
LogSuccess(p.Name+":", "Installed - Took", time.Since(start))
LogSuccess(p.Name+":", "Installed after", time.Since(start))
if p.Run {
runner := make(chan bool, 1)
LogSuccess(p.Name + ": Running..")
@ -157,7 +157,7 @@ func (p *Project) build() {
if err := p.GoBuild(); err != nil {
Fail(p.Name + ": "+err.Error())
} else {
LogSuccess(p.Name+":", "Builded - Took", time.Since(start))
LogSuccess(p.Name+":", "Builded after", time.Since(start))
}
return
}