building time fix
This commit is contained in:
parent
e368e1c6e8
commit
08ea100437
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue