Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2021-06-09 22:03:29 +0000
committerThomas Wolf2021-06-09 22:03:29 +0000
commit3ffcd526dc7245dbabd9c1cc3dae4ca23198a4c1 (patch)
tree1375495d34f6e5c519c57f6024d441ada6cd9522
parent064a7e50041ddf8cfd79a1fb740816290b44b996 (diff)
downloadegit-pipelines-3ffcd526dc7245dbabd9c1cc3dae4ca23198a4c1.tar.gz
egit-pipelines-3ffcd526dc7245dbabd9c1cc3dae4ca23198a4c1.tar.xz
egit-pipelines-3ffcd526dc7245dbabd9c1cc3dae4ca23198a4c1.zip
Use https:// instead of git:// for cloning.v0.0.8
Bug: 574076 Change-Id: I5346f1b31c07c91342fcef323d5e7614de5b9ef2 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r--src/org/eclipse/egit/jenkins/Lib.groovy2
-rw-r--r--src/org/eclipse/egit/jenkins/Tools.groovy2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/org/eclipse/egit/jenkins/Lib.groovy b/src/org/eclipse/egit/jenkins/Lib.groovy
index 060da73..9d975da 100644
--- a/src/org/eclipse/egit/jenkins/Lib.groovy
+++ b/src/org/eclipse/egit/jenkins/Lib.groovy
@@ -80,7 +80,7 @@ class Lib implements Serializable {
if (ownVersion.endsWith('-SNAPSHOT')) {
return getUpstreamSnapshotVersion(upstreamProject, ownVersion)
}
- def tags = getTags("git://git.eclipse.org/gitroot/${upstreamRepoPath}/${upstreamProject}.git").trim().split(/\v+/)
+ def tags = getTags("https://git.eclipse.org/r/${upstreamRepoPath}/${upstreamProject}").trim().split(/\v+/)
def tag = ''
int max = -1
long maxTime = -1
diff --git a/src/org/eclipse/egit/jenkins/Tools.groovy b/src/org/eclipse/egit/jenkins/Tools.groovy
index 9a71ec1..a52bba5 100644
--- a/src/org/eclipse/egit/jenkins/Tools.groovy
+++ b/src/org/eclipse/egit/jenkins/Tools.groovy
@@ -81,7 +81,7 @@ class Tools implements Serializable {
doGenerateSubmoduleConfigurations: false,
submoduleCfg: [],
userRemoteConfigs: [
- [url : "git://git.eclipse.org/gitroot/${project}.git", name : 'origin', refspec : refSpec]
+ [url : "https://git.eclipse.org/r/${project}", name : 'origin', refspec : refSpec]
]
]
for (extra in extras) {

Back to the top