From 37ab7223d55334d098dd39b8e5be14593b9bb074 Mon Sep 17 00:00:00 2001 From: alessio Date: Mon, 17 Oct 2016 12:16:27 +0200 Subject: [PATCH] watcher change event in web panel --- cli/watcher.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/watcher.go b/cli/watcher.go index a05f54d..bda5de1 100644 --- a/cli/watcher.go +++ b/cli/watcher.go @@ -63,6 +63,8 @@ func (p *Project) watching() { i := strings.Index(event.Name, filepath.Ext(event.Name)) if event.Name[:i] != "" && inArray(ext, p.Watcher.Exts) { + p.Buffer.StdLog = append(p.Buffer.StdLog, BufferOut{Time: time.Now(), Text: event.Name[:i] + ext + " changed"}) + p.parent.Sync <- "sync" fmt.Println(pname(p.Name, 4), Magenta(strings.ToUpper(ext[1:])+" changed"), Magenta(event.Name[:i]+ext)) // stop and run again if p.Run {