From 08ea100437cedbc71560ebf126a9204292317ab3 Mon Sep 17 00:00:00 2001 From: alessio Date: Sat, 20 Aug 2016 15:45:00 +0200 Subject: [PATCH] building time fix --- realize/watcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/watcher.go b/realize/watcher.go index 7d8880b..bb37cfb 100644 --- a/realize/watcher.go +++ b/realize/watcher.go @@ -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 }