diff --git a/JenkinsJobs/Releng/createMaintenanceBranch.groovy b/JenkinsJobs/Releng/createMaintenanceBranch.groovy index 7dbeb9d12cd..07d6cd82e6d 100644 --- a/JenkinsJobs/Releng/createMaintenanceBranch.groovy +++ b/JenkinsJobs/Releng/createMaintenanceBranch.groovy @@ -28,7 +28,7 @@ function fn_toPushRepo() { if ! [[ "$from" == http* ]]; then echo $from else - echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://git.eclipse.org/r,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://github.com/,git@github.com:,' <<< $from) + echo $(sed -e 's,https://github.com/,git@github.com:,' <<< $from) fi } diff --git a/JenkinsJobs/Releng/tagEclipseRelease.groovy b/JenkinsJobs/Releng/tagEclipseRelease.groovy index 81042c20267..42866da4e5e 100644 --- a/JenkinsJobs/Releng/tagEclipseRelease.groovy +++ b/JenkinsJobs/Releng/tagEclipseRelease.groovy @@ -63,7 +63,7 @@ function toPushRepo() { if ! [[ "$from" == http* ]]; then echo $from else - echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://git.eclipse.org/r,ssh://genie.releng@git.eclipse.org:29418,' -e 's/https:\\/\\/github.com/ssh:\\/\\/git@github.com/g' <<< $from) + echo $(sed -e 's/https:\\/\\/github.com/ssh:\\/\\/git@github.com/g' <<< $from) fi } diff --git a/cje-production/mbscripts/mb110_tagBuildInputs.sh b/cje-production/mbscripts/mb110_tagBuildInputs.sh index 42e9b11f629..28f001a226d 100755 --- a/cje-production/mbscripts/mb110_tagBuildInputs.sh +++ b/cje-production/mbscripts/mb110_tagBuildInputs.sh @@ -61,7 +61,7 @@ function toPushRepo() { if ! [[ "$from" == http* ]]; then echo $from else - echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://git.eclipse.org/r,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://github.com/,git@github.com:,' <<< $from) + echo $(sed -e 's,https://github.com/,git@github.com:,' <<< $from) fi } export -f toPushRepo diff --git a/cje-production/promotion/makeVisible.sh b/cje-production/promotion/makeVisible.sh index 00a9a3e7df3..9f9b59bcfa1 100644 --- a/cje-production/promotion/makeVisible.sh +++ b/cje-production/promotion/makeVisible.sh @@ -18,7 +18,7 @@ function toPushRepo() { if ! [[ "$from" == http* ]]; then echo $from else - echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://git.eclipse.org/r,ssh://genie.releng@git.eclipse.org:29418,' -e 's,https://github.com/,git@github.com:,' <<< $from) + echo $(sed -e 's,https://github.com/,git@github.com:,' <<< $from) fi }