From 666b698324bfd193acda3dfa5b85a615fbff1965 Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Mon, 15 Nov 2021 10:56:07 +0200 Subject: [PATCH] chore: remove eclipse-che/che-server dependency from the release process (#1825) Signed-off-by: Anatolii Bazko --- make-release.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/make-release.sh b/make-release.sh index 65228e660..2ce48e460 100755 --- a/make-release.sh +++ b/make-release.sh @@ -70,14 +70,9 @@ release() { echo "$VERSION" > VERSION # now replace package.json dependencies - apply_sed "s;github.com/eclipse-che/che-server#\(.*\)\",;github.com/eclipse-che/che-server#${VERSION}\",;g" package.json apply_sed "s;github.com/eclipse-che/che-operator#\(.*\)\",;github.com/eclipse-che/che-operator#${VERSION}\",;g" package.json apply_sed "s;\"@eclipse-che/api\": \"\(.*\)\",;\"@eclipse-che/api\": \"${VERSION}\",;g" package.json - if ! grep -q "github.com/eclipse-che/che-server#${VERSION}" package.json; then - echo "[ERROR] Unable to find Che Server version ${VERSION} in the package.json"; exit 1 - fi - if ! grep -q "github.com/eclipse-che/che-operator#${VERSION}" package.json; then echo "[ERROR] Unable to find Che Operator version ${VERSION} in the package.json"; exit 1 fi