Skip to content

Commit f25c84f

Browse files
ferhatelmasjmacd
authored andcommitted
Fix lint target (#360)
1 parent 921ea03 commit f25c84f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ lint: $(TOOLS_DIR)/golangci-lint $(TOOLS_DIR)/misspell $(TOOLS_DIR)/stringer
8787
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
8888
echo "golangci-lint in $${dir}"; \
8989
(cd "$${dir}" && \
90-
$(abspath $(TOOLS_DIR))/golangci-lint run --fix); \
90+
$(abspath $(TOOLS_DIR))/golangci-lint run --fix && \
91+
$(abspath $(TOOLS_DIR))/golangci-lint run); \
9192
done
9293
$(TOOLS_DIR)/misspell -w $(ALL_DOCS)
9394
set -e; for dir in $(ALL_GO_MOD_DIRS); do \

api/trace/noop_span.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ func (NoopSpan) AddEventWithTimestamp(ctx context.Context, timestamp time.Time,
7373

7474
// SetName does nothing.
7575
func (NoopSpan) SetName(name string) {
76-
}
76+
}

0 commit comments

Comments
 (0)