Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,11 @@ $(TOOLS_BIN_DIR):
$(TOOLS_BIN_NAMES): $(TOOLS_BIN_DIR) $(TOOLS_MOD_DIR)/go.mod
cd $(TOOLS_MOD_DIR) && $(GOCMD) build -o $@ -trimpath $(filter %/$(notdir $@),$(TOOLS_PKG_NAMES))

# postinstall.sh, preinstall.sh, and preremove.sh have OTel headers which would be overwritten were they not excluded.
HEADER_GEN_FILES=$(shell find $(SRC_ROOT)/. -type f \( -name '*.go' -o -name '*.js' -o -name '*.sh' \) ! -name 'pre*' ! -name 'post*')
# Exclude files we adopted from upstream which would be overwritten were they not excluded.
HEADER_GEN_FILES=$(shell find $(SRC_ROOT)/. \
-type f \( -name '*.go' -o -name '*.js' -o -name '*.sh' \) \
! -name 'preinstall.sh' ! -name 'postinstall.sh' ! -name 'preremove.sh' \
! -name 'free-disk-space.sh')
NOTICE_OUTPUT?=THIRD_PARTY_NOTICES.md
FIRST_COMMIT_HASH=6451f322bfe1e62962d3d87b50d785de8048e865

Expand Down
Loading