building time
This commit is contained in:
parent
6ba882a03d
commit
e368e1c6e8
@ -127,11 +127,12 @@ func (p *Project) Watching() {
|
|||||||
func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
|
func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
|
||||||
if p.Bin {
|
if p.Bin {
|
||||||
LogSuccess(p.Name + ": Installing..")
|
LogSuccess(p.Name + ": Installing..")
|
||||||
|
start := time.Now()
|
||||||
if err := p.GoInstall(); err != nil {
|
if err := p.GoInstall(); err != nil {
|
||||||
Fail(p.Name + ": "+err.Error())
|
Fail(p.Name + ": "+err.Error())
|
||||||
wr.Done()
|
wr.Done()
|
||||||
} else {
|
} else {
|
||||||
LogSuccess(p.Name + ": Installed")
|
LogSuccess(p.Name + ": Installed - "+time.Since(start))
|
||||||
if p.Run {
|
if p.Run {
|
||||||
runner := make(chan bool, 1)
|
runner := make(chan bool, 1)
|
||||||
LogSuccess(p.Name + ": Running..")
|
LogSuccess(p.Name + ": Running..")
|
||||||
@ -153,10 +154,11 @@ func (p *Project) install(channel chan bool,wr *sync.WaitGroup) {
|
|||||||
func (p *Project) build() {
|
func (p *Project) build() {
|
||||||
if p.Build {
|
if p.Build {
|
||||||
LogSuccess(p.Name + ": Building..")
|
LogSuccess(p.Name + ": Building..")
|
||||||
|
start := time.Now()
|
||||||
if err := p.GoBuild(); err != nil {
|
if err := p.GoBuild(); err != nil {
|
||||||
Fail(p.Name + ": "+err.Error())
|
Fail(p.Name + ": "+err.Error())
|
||||||
} else {
|
} else {
|
||||||
LogSuccess(p.Name + ": Builded")
|
LogSuccess(p.Name + ": Builded - "+time.Since(start))
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user