Skip to content

Commit 5562f05

Browse files
committed
Fix hack/release.sh with correct module name
Signed-off-by: Dr. Stefan Schimanski <stefan.schimanski@gmail.com>
1 parent 2de6697 commit 5562f05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ for DIR in providers examples; do
5252
for GOMOD in $(find "${DIR}" -name go.mod); do
5353
B=$(dirname ${GOMOD})
5454
if [ "$(uname)" = "Darwin" ]; then
55-
stepi sed -i '' -E '/github\.com\/kubernetes-sigs\/multicluster-runtime/ s/([[:space:]]+)v[[:alnum:]._+\-]+$/\1'"${VERSION}"'/' "${B}/go.mod"
55+
stepi sed -i '' -E '/sigs\.k8s\.io\/multicluster-runtime/ s/([[:space:]]+)v[[:alnum:]._+\-]+$/\1'"${VERSION}"'/' "${B}/go.mod"
5656
else
57-
stepi sed -i -E '/github\.com\/kubernetes-sigs\/multicluster-runtime/ s/([[:space:]]+)v[[:alnum:]._+\-]+$/\1'"${VERSION}"'/' "${B}/go.mod"
57+
stepi sed -i -E '/sigs\.k8s\.io\/multicluster-runtime/ s/([[:space:]]+)v[[:alnum:]._+\-]+$/\1'"${VERSION}"'/' "${B}/go.mod"
5858
fi
5959
step git diff "${B}/go.mod"
6060
echo

0 commit comments

Comments
 (0)