Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #52 from dhiltgen/fix_windows_build
Browse files Browse the repository at this point in the history
Fix dist target to use windows exe suffix
  • Loading branch information
dhiltgen committed Nov 20, 2020
2 parents c3b0e96 + fd6d01e commit 25b70ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -57,10 +57,10 @@ print-%:
build-ci: $(CI_BUILD_TARGETS)

.PHONY: dist
dist: $(CI_ARCHIVES)
dist: $(CI_BUILD_TARGETS) $(CI_ARCHIVES)

$(BIN_DIR)/%.tgz: $(BIN_DIR)/%/kubectl-buildkit $(BIN_DIR)/%/kubectl-build
cd $(BIN_DIR)/$* && tar -czvf ../$*.tgz kubectl-buildkit kubectl-build
$(BIN_DIR)/%.tgz: $(BIN_DIR)/%/*
cd $(BIN_DIR)/$* && tar -czvf ../$*.tgz kubectl-*

.PHONY: test
test:
Expand Down

0 comments on commit 25b70ef

Please sign in to comment.