Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
Signed-off-by: kpango <kpango@vdaas.org>
  • Loading branch information
kpango committed May 8, 2024
1 parent 91475b4 commit 5cae30b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile.d/k3d.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ k3d/install: $(BINDIR)/k3d

$(BINDIR)/k3d:
mkdir -p $(BINDIR)
curl -fsSL htps://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
chmod a+x $(BINDIR)/$(K3D_COMMAND)

.PHONY: k3d/start
Expand Down
2 changes: 1 addition & 1 deletion Makefile.d/kind.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kind/install: $(BINDIR)/kind

$(BINDIR)/kind:
mkdir -p $(BINDIR)
curl -fsSL https://github.com/kubernetes-sigs/kind/releases/download/$(KIND_VERSION)/kind-$(OS)-$(subst x86_64,amd64,$(shell echo $(ARCH) | tr '[:upper:]' '[:lower:]')) -o $(BINDIR)/kind
curl -fsSL https://github.com/kubernetes-sigs/kind/releases/download/v$(KIND_VERSION)/kind-$(OS)-$(subst x86_64,amd64,$(shell echo $(ARCH) | tr '[:upper:]' '[:lower:]')) -o $(BINDIR)/kind
chmod a+x $(BINDIR)/kind

.PHONY: kind/start
Expand Down
4 changes: 2 additions & 2 deletions Makefile.d/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
golangci-lint/install: $(BINDIR)/golangci-lint

$(BINDIR)/golangci-lint:
curl -fsSL htps://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
curl -fsSL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(BINDIR) $(GOLANGCILINT_VERSION)

.PHONY: goimports/install
Expand Down Expand Up @@ -56,7 +56,7 @@ $(BINDIR)/prettier:
reviewdog/install: $(BINDIR)/reviewdog

$(BINDIR)/reviewdog:
curl -fsSL htps://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh \
curl -fsSL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh \
| sh -s -- -b $(BINDIR) $(REVIEWDOG_VERSION)

.PHONY: kubectl/install
Expand Down

0 comments on commit 5cae30b

Please sign in to comment.