Skip to content

Commit

Permalink
Remove remnants from git.eclipse.org
Browse files Browse the repository at this point in the history
No longer used so these sed calls just make scripts more complex.
  • Loading branch information
akurtakov committed Nov 27, 2024
1 parent 6695269 commit 420184c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion JenkinsJobs/Releng/createMaintenanceBranch.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function fn_toPushRepo() {
if ! [[ "$from" == http* ]]; then
echo $from
else
echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://[email protected]:29418,' -e 's,https://git.eclipse.org/r,ssh://[email protected]:29418,' -e 's,https://github.com/,[email protected]:,' <<< $from)
echo $(sed -e 's,https://github.com/,[email protected]:,' <<< $from)
fi
}
Expand Down
2 changes: 1 addition & 1 deletion JenkinsJobs/Releng/tagEclipseRelease.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function toPushRepo() {
if ! [[ "$from" == http* ]]; then
echo $from
else
echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://[email protected]:29418,' -e 's,https://git.eclipse.org/r,ssh://[email protected]:29418,' -e 's/https:\\/\\/github.com/ssh:\\/\\/[email protected]/g' <<< $from)
echo $(sed -e 's/https:\\/\\/github.com/ssh:\\/\\/[email protected]/g' <<< $from)
fi
}
Expand Down
2 changes: 1 addition & 1 deletion cje-production/mbscripts/mb110_tagBuildInputs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function toPushRepo() {
if ! [[ "$from" == http* ]]; then
echo $from
else
echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://[email protected]:29418,' -e 's,https://git.eclipse.org/r,ssh://[email protected]:29418,' -e 's,https://github.com/,[email protected]:,' <<< $from)
echo $(sed -e 's,https://github.com/,[email protected]:,' <<< $from)
fi
}
export -f toPushRepo
Expand Down
2 changes: 1 addition & 1 deletion cje-production/promotion/makeVisible.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function toPushRepo() {
if ! [[ "$from" == http* ]]; then
echo $from
else
echo $(sed -e 's,http://git.eclipse.org/gitroot,ssh://[email protected]:29418,' -e 's,https://git.eclipse.org/r,ssh://[email protected]:29418,' -e 's,https://github.com/,[email protected]:,' <<< $from)
echo $(sed -e 's,https://github.com/,[email protected]:,' <<< $from)
fi
}

Expand Down

0 comments on commit 420184c

Please sign in to comment.