Skip to content

Commit

Permalink
update get-armadactl make target not to cause git diffs
Browse files Browse the repository at this point in the history
Signed-off-by: Dejan Zele Pejchev <[email protected]>
  • Loading branch information
dejanzele committed Jul 18, 2024
1 parent 28367eb commit 4235ea1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ submit-example-job: ## Submit example job to Armada using armadactl

.PHONY: get-armadactl
get-armadactl: ## Get armadactl binary
curl https://raw.githubusercontent.com/armadaproject/armada/master/scripts/get-armadactl.sh | bash
curl -o $(LOCALBIN_APP)/get-armadactl.sh https://raw.githubusercontent.com/armadaproject/armada/master/scripts/get-armadactl.sh
bash -c "cd bin/app && bash get-armadactl.sh"
rm bin/app/get-armadactl.sh

##@ Codegen

Expand Down Expand Up @@ -425,3 +427,4 @@ GOLANGCI_LINT_VERSION ?= v1.59.0
golangci-lint: $(GOLANGCI_LINT) ## Download golangci-lint locally if necessary.
$(GOLANGCI_LINT): $(LOCALBIN_TOOLING)
test -s $(GOLANGCI_LINT) || GOBIN=$(LOCALBIN_TOOLING) go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(GOLANGCI_LINT_VERSION)

0 comments on commit 4235ea1

Please sign in to comment.