Skip to content

Commit

Permalink
[chore] fix typo in makefile (#28624)
Browse files Browse the repository at this point in the history
mulitmod -> multimod

Signed-off-by: Alex Boten <aboten@lightstep.com>
  • Loading branch information
Alex Boten authored Oct 25, 2023
1 parent 8a33109 commit 5e285f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ COMMIT?=HEAD
MODSET?=contrib-core
REMOTE?=git@github.com:open-telemetry/opentelemetry-collector-contrib.git
.PHONY: push-tags
push-tags: $(MULITMOD)
$(MULITMOD) verify
set -e; for tag in `$(MULITMOD) tag -m ${MODSET} -c ${COMMIT} --print-tags | grep -v "Using" `; do \
push-tags: $(MULTIMOD)
$(MULTIMOD) verify
set -e; for tag in `$(MULTIMOD) tag -m ${MODSET} -c ${COMMIT} --print-tags | grep -v "Using" `; do \
echo "pushing tag $${tag}"; \
git push ${REMOTE} $${tag}; \
done;
Expand Down Expand Up @@ -367,18 +367,18 @@ certs:
$(foreach dir, $(CERT_DIRS), $(call exec-command, @internal/buildscripts/gen-certs.sh -o $(dir)))

.PHONY: multimod-verify
multimod-verify: $(MULITMOD)
multimod-verify: $(MULTIMOD)
@echo "Validating versions.yaml"
$(MULITMOD) verify
$(MULTIMOD) verify

.PHONY: multimod-prerelease
multimod-prerelease: $(MULITMOD)
$(MULITMOD) prerelease -s=true -b=false -v ./versions.yaml -m contrib-base
multimod-prerelease: $(MULTIMOD)
$(MULTIMOD) prerelease -s=true -b=false -v ./versions.yaml -m contrib-base
$(MAKE) gotidy

.PHONY: multimod-sync
multimod-sync: $(MULITMOD)
$(MULITMOD) sync -a=true -s=true -o ../opentelemetry-collector
multimod-sync: $(MULTIMOD)
$(MULTIMOD) sync -a=true -s=true -o ../opentelemetry-collector
$(MAKE) gotidy

.PHONY: crosslink
Expand Down
2 changes: 1 addition & 1 deletion Makefile.Common
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ MDLINKCHECK := $(TOOLS_BIN_DIR)/markdown-link-check
MISSPELL := $(TOOLS_BIN_DIR)/misspell -error
MISSPELL_CORRECTION := $(TOOLS_BIN_DIR)/misspell -w
LINT := $(TOOLS_BIN_DIR)/golangci-lint
MULITMOD := $(TOOLS_BIN_DIR)/multimod
MULTIMOD := $(TOOLS_BIN_DIR)/multimod
CHLOGGEN := $(TOOLS_BIN_DIR)/chloggen
GOIMPORTS := $(TOOLS_BIN_DIR)/goimports
PORTO := $(TOOLS_BIN_DIR)/porto
Expand Down

0 comments on commit 5e285f0

Please sign in to comment.