building time disabled

This commit is contained in:
alessio 2016-08-20 15:49:10 +02:00
parent 08ea100437
commit 600ba22f68
1 changed files with 4 additions and 4 deletions

View File

@ -127,12 +127,12 @@ func (p *Project) Watching() {
func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
if p.Bin {
LogSuccess(p.Name + ": Installing..")
start := time.Now()
//start := time.Now()
if err := p.GoInstall(); err != nil {
Fail(p.Name + ": "+err.Error())
wr.Done()
} else {
LogSuccess(p.Name + ": Installed - "+ string(time.Since(start)))
LogSuccess(p.Name + ": Installed ")
if p.Run {
runner := make(chan bool, 1)
LogSuccess(p.Name + ": Running..")
@ -154,11 +154,11 @@ func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
func (p *Project) build() {
if p.Build {
LogSuccess(p.Name + ": Building..")
start := time.Now()
//start := time.Now()
if err := p.GoBuild(); err != nil {
Fail(p.Name + ": "+err.Error())
} else {
LogSuccess(p.Name + ": Builded - "+ string(time.Since(start)))
LogSuccess(p.Name + ": Builded ")
}
return
}