building time fix

This commit is contained in:
alessio 2016-08-20 15:45:00 +02:00
parent e368e1c6e8
commit 08ea100437
1 changed files with 2 additions and 2 deletions

View File

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