Skip to content

Commit

Permalink
fix path issues in some makefile commands
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Theel <tt@fino.digital>
  • Loading branch information
Tobias Theel committed Sep 2, 2021
1 parent 432865e commit 84aa304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT_ROOT=github.com/jaegertracing/jaeger-client-go/v3
PROJECT_ROOT=github.com/jaegertracing/jaeger-client-go
export GO111MODULE=on
PACKAGES := . $(shell GO111MODULE=on go list ./... | awk -F/ 'NR>1 {print "./"$$4"/..."}' | grep -v -e ./thrift-gen/... -e ./thrift/... | sort -u)
PACKAGES := . $(shell GO111MODULE=off go list ./... | awk -F/ 'NR>1 {print "./"$$4"/..."}' | grep -v -e ./thrift-gen/... -e ./thrift/... | sort -u)
# all .go files that don't exist in hidden directories
ALL_SRC := $(shell find . -name "*.go" | grep -v -e vendor -e thrift-gen -e ./thrift/ \
-e ".*/\..*" \
Expand Down

0 comments on commit 84aa304

Please sign in to comment.