Skip to content

Commit

Permalink
Fix experimental metrics path in makefile (#201)
Browse files Browse the repository at this point in the history
* Fix experimental metrics wildcard

I noticed that the experimental/metrics directory was being missed, and realized I forgot to update the path in the makefile.

* Fix makefile path

* Revise makefile
  • Loading branch information
wtong98 authored Aug 20, 2020
1 parent a678ae8 commit c90a621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GENDIR := gen
GOPATH_GENDIR := $(GOPATH_DIR)/$(GENDIR)

# Find all .proto files.
PROTO_FILES := $(wildcard opentelemetry/proto/*/v1/*.proto opentelemetry/proto/collector/*/v1/*.proto opentelemetry/proto/experimental/*/*.proto)
PROTO_FILES := $(wildcard opentelemetry/proto/*/*/*.proto opentelemetry/proto/*/*/*/*.proto)

# Function to execute a command. Note the empty line before endef to make sure each command
# gets executed separately instead of concatenated with previous one.
Expand Down

0 comments on commit c90a621

Please sign in to comment.