Skip to content

Commit

Permalink
fix error - sed command
Browse files Browse the repository at this point in the history
  • Loading branch information
won-js committed Jan 3, 2025
1 parent 10fe839 commit df61362
Show file tree
Hide file tree
Showing 16 changed files with 5,355 additions and 6,089 deletions.
10 changes: 10 additions & 0 deletions pkg/translator/jaeger/Makefile.Thrift.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ THRIFT=docker run --rm -u ${shell id -u} -v "${PWD}:/data" $(THRIFT_IMG) thrift
THRIFT_GO_ARGS=thrift_import="github.com/apache/thrift/lib/go/thrift"
THRIFT_GEN_DIR=thrift-gen

JAEGER_IMPORT_PATH=github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger

# sed on Mac does not support the same syntax for in-place updates as sed on Linux
# When running on MacOS it's best to install gsed and run Makefile with SED=gsed
ifeq ($(GOOS),darwin)
SED=gsed
else
SED=sed
endif

.PHONY: thrift-image
thrift-image:
$(THRIFT) -version
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pkg/translator/jaeger/thrift-gen/agent/agent-consts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit df61362

Please sign in to comment.