diff --git a/make-release.sh b/make-release.sh index f76a2bdec..04866d881 100755 --- a/make-release.sh +++ b/make-release.sh @@ -10,9 +10,6 @@ # Contributors: # Red Hat, Inc. - initial API and implementation -set -e -set -x - init() { RELEASE="$1" BRANCH=$(echo $RELEASE | sed 's/.$/x/') @@ -245,7 +242,6 @@ createPRToMasterBranch() { run() { checkoutToReleaseBranch releaseOperatorCode - updateNightlyOlmFiles if [[ $RELEASE_OLM_FILES == "true" ]]; then releaseOlmFiles fi diff --git a/olm/prepare-community-operators-update.sh b/olm/prepare-community-operators-update.sh index fa87c0196..d2b39e532 100755 --- a/olm/prepare-community-operators-update.sh +++ b/olm/prepare-community-operators-update.sh @@ -109,7 +109,7 @@ do echo "####" echo "#################" else - git push "https://${GIT_USER}:${GIT_PASSWORD}@github.com/che-incubator/community-operators.git" "${branch}" + git push "git@github.com:che-incubator/community-operators.git" "${branch}" fi done cd "${CURRENT_DIR}" diff --git a/olm/release-olm-files.sh b/olm/release-olm-files.sh index 032717f17..8f6360882 100755 --- a/olm/release-olm-files.sh +++ b/olm/release-olm-files.sh @@ -11,7 +11,6 @@ # Red Hat, Inc. - initial API and implementation set -e -set -x REGEX="^([0-9]+)\\.([0-9]+)\\.([0-9]+)(\\-[0-9a-z-]+(\\.[0-9a-z-]+)*)?(\\+[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?$" diff --git a/olm/update-nightly-olm-files.sh b/olm/update-nightly-olm-files.sh index 30bb233c8..a16633efd 100755 --- a/olm/update-nightly-olm-files.sh +++ b/olm/update-nightly-olm-files.sh @@ -11,7 +11,6 @@ # Red Hat, Inc. - initial API and implementation set -e -set -x CURRENT_DIR=$(pwd) BASE_DIR=$(cd "$(dirname "$0")"; pwd)