Skip to content

Commit 8d39f43

Browse files
Merge pull request #102 from cert-manager/self-upgrade-main
[CI] Merge self-upgrade-main into main
2 parents af2d249 + 3619617 commit 8d39f43

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

klone.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,35 @@ targets:
99
- folder_name: boilerplate
1010
repo_url: https://github.com/cert-manager/makefile-modules.git
1111
repo_ref: main
12-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
12+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
1313
repo_path: modules/boilerplate
1414
- folder_name: generate-verify
1515
repo_url: https://github.com/cert-manager/makefile-modules.git
1616
repo_ref: main
17-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
17+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
1818
repo_path: modules/generate-verify
1919
- folder_name: go
2020
repo_url: https://github.com/cert-manager/makefile-modules.git
2121
repo_ref: main
22-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
22+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
2323
repo_path: modules/go
2424
- folder_name: help
2525
repo_url: https://github.com/cert-manager/makefile-modules.git
2626
repo_ref: main
27-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
27+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
2828
repo_path: modules/help
2929
- folder_name: klone
3030
repo_url: https://github.com/cert-manager/makefile-modules.git
3131
repo_ref: main
32-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
32+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
3333
repo_path: modules/klone
3434
- folder_name: repository-base
3535
repo_url: https://github.com/cert-manager/makefile-modules.git
3636
repo_ref: main
37-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
37+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
3838
repo_path: modules/repository-base
3939
- folder_name: tools
4040
repo_url: https://github.com/cert-manager/makefile-modules.git
4141
repo_ref: main
42-
repo_hash: d226527d1c27589be8adaaddf8d591483bbc8c0b
42+
repo_hash: a0b43109b7ada33a472a12af4332a6148464b1ab
4343
repo_path: modules/tools

make/_shared/tools/00_mod.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ $(DOWNLOAD_DIR)/tools/vault@$(VAULT_VERSION)_$(HOST_OS)_$(HOST_ARCH): | $(DOWNLO
499499
@source $(lock_script) $@; \
500500
$(CURL) https://releases.hashicorp.com/vault/$(VAULT_VERSION:v%=%)/vault_$(VAULT_VERSION:v%=%)_$(HOST_OS)_$(HOST_ARCH).zip -o $(outfile).zip; \
501501
$(checkhash_script) $(outfile).zip $(vault_$(HOST_OS)_$(HOST_ARCH)_SHA256SUM); \
502-
unzip -qq -c $(outfile).zip > $(outfile); \
502+
unzip -p $(outfile).zip vault > $(outfile); \
503503
chmod +x $(outfile); \
504504
rm -f $(outfile).zip
505505

@@ -593,7 +593,7 @@ $(DOWNLOAD_DIR)/tools/protoc@$(PROTOC_VERSION)_$(HOST_OS)_$(HOST_ARCH): | $(DOWN
593593
@source $(lock_script) $@; \
594594
$(CURL) https://github.com/protocolbuffers/protobuf/releases/download/$(PROTOC_VERSION)/protoc-$(PROTOC_VERSION:v%=%)-$(OS)-$(ARCH).zip -o $(outfile).zip; \
595595
$(checkhash_script) $(outfile).zip $(protoc_$(HOST_OS)_$(HOST_ARCH)_SHA256SUM); \
596-
unzip -qq -c $(outfile).zip bin/protoc > $(outfile); \
596+
unzip -p $(outfile).zip bin/protoc > $(outfile); \
597597
chmod +x $(outfile); \
598598
rm -f $(outfile).zip
599599

0 commit comments

Comments
 (0)