We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc2ba7e commit 6189993Copy full SHA for 6189993
Makefile
@@ -1,4 +1,4 @@
1
-VERSION = 2.0.1
+VERSION = 2.0.2
2
3
PACKAGES := $(shell go list -f {{.Dir}} ./...)
4
GOFILES := $(addsuffix /*.go,$(PACKAGES))
cmd/ts/main.go
@@ -139,9 +139,13 @@ func main() {
139
if err := printer(&line); err != nil {
140
fmt.Fprintln(os.Stderr, "output error:", err)
141
}
142
- if start != nil && start.MatchString(line.Text) {
+ if start != nil {
143
+ if start.MatchString(line.Text) {
144
+ last = now
145
+ line.Start = line.Text
146
+ }
147
+ } else {
148
last = now
- line.Start = line.Text
149
150
i++
151
0 commit comments