Skip to content

Commit 3643203

Browse files
Merge pull request #337 from cert-manager/self-upgrade-main
[CI] Merge self-upgrade-main into main
2 parents 7642fa2 + b652b1e commit 3643203

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

klone.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,45 @@ targets:
1010
- folder_name: boilerplate
1111
repo_url: https://github.com/cert-manager/makefile-modules.git
1212
repo_ref: main
13-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
13+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
1414
repo_path: modules/boilerplate
1515
- folder_name: cert-manager
1616
repo_url: https://github.com/cert-manager/makefile-modules.git
1717
repo_ref: main
18-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
18+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
1919
repo_path: modules/cert-manager
2020
- folder_name: executable
2121
repo_url: https://github.com/cert-manager/makefile-modules.git
2222
repo_ref: main
23-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
23+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
2424
repo_path: modules/executable
2525
- folder_name: generate-verify
2626
repo_url: https://github.com/cert-manager/makefile-modules.git
2727
repo_ref: main
28-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
28+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
2929
repo_path: modules/generate-verify
3030
- folder_name: go
3131
repo_url: https://github.com/cert-manager/makefile-modules.git
3232
repo_ref: main
33-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
33+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
3434
repo_path: modules/go
3535
- folder_name: help
3636
repo_url: https://github.com/cert-manager/makefile-modules.git
3737
repo_ref: main
38-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
38+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
3939
repo_path: modules/help
4040
- folder_name: klone
4141
repo_url: https://github.com/cert-manager/makefile-modules.git
4242
repo_ref: main
43-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
43+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
4444
repo_path: modules/klone
4545
- folder_name: repository-base
4646
repo_url: https://github.com/cert-manager/makefile-modules.git
4747
repo_ref: main
48-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
48+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
4949
repo_path: modules/repository-base
5050
- folder_name: tools
5151
repo_url: https://github.com/cert-manager/makefile-modules.git
5252
repo_ref: main
53-
repo_hash: 6d5cc44645b0b9f0d2e23f0a28f981f942085fea
53+
repo_hash: 737c51c1bf36dea15a7ef2bc5c070d09845530a2
5454
repo_path: modules/tools

make/_shared/boilerplate/01_mod.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ shared_verify_targets += verify-boilerplate
2828
generate-license:
2929
cp -r $(license_base_dir)/. ./
3030

31-
shared_generate_targets += generate-base
31+
shared_generate_targets += generate-license

make/_shared/executable/00_mod.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ifeq ($(wildcard $(go_$1_mod_dir)/go.mod),)
7070
$$(error go_$1_mod_dir "$(go_$1_mod_dir)" does not contain a go.mod file)
7171
endif
7272
ifeq ($(wildcard $(go_$1_mod_dir)/$(go_$1_main_dir)/main.go),)
73-
$$(error go_$1_main_dir "$(go_$1_mod_dir)" does not contain a main.go file)
73+
$$(error go_$1_main_dir "$(go_$1_mod_dir)/$(go_$1_main_dir)" does not contain a main.go file)
7474
endif
7575
endef
7676

make/_shared/tools/00_mod.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,12 +707,12 @@ endif
707707
non_go_tool_names := $(filter-out $(go_tool_names),$(tool_names))
708708

709709
.PHONY: non-go-tools
710-
## Download and setup all Go tools
710+
## Download and setup all Non-Go tools
711711
## @category [shared] Tools
712712
non-go-tools: $(non_go_tool_names:%=$(bin_dir)/tools/%)
713713

714714
.PHONY: go-tools
715-
## Download and setup all Non-Go tools
715+
## Download and setup all Go tools
716716
## NOTE: this target is also used to learn the shas of
717717
## these tools (see scripts/learn_tools_shas.sh in the
718718
## Makefile modules repo)

0 commit comments

Comments
 (0)