Skip to content

Commit 2d4e566

Browse files
authored
Merge pull request kubernetes#2817 from tylerferrara/kep
KEP-2818: Reducing Build Maintenance in CIP
2 parents 9aac08e + cbb1ee2 commit 2d4e566

File tree

4 files changed

+654
-3
lines changed

4 files changed

+654
-3
lines changed

hack/update-toc.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ exitHandler() (
3535
)
3636
trap exitHandler EXIT
3737

38-
# perform go get in a temp dir as we are not tracking this version in a go module
39-
# if we do the go get in the repo, it will create / update a go.mod and go.sum
38+
# Perform go install in a temp dir as we are not tracking this version in a go
39+
# module.
40+
# If we do the go install in the repo, it will create/update go.mod and go.sum.
4041
cd "${TMP_DIR}"
41-
GO111MODULE=on GOBIN="${TMP_DIR}" go get "sigs.k8s.io/mdtoc@${TOOL_VERSION}"
42+
GO111MODULE=on GOBIN="${TMP_DIR}" go install "sigs.k8s.io/mdtoc@${TOOL_VERSION}"
4243
export PATH="${TMP_DIR}:${PATH}"
4344
cd "${ROOT}"
4445

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kep-number: 2818
2+
stable:
3+
approver: "@ehashman"

0 commit comments

Comments
 (0)