Skip to content

Commit 778e2d9

Browse files
authored
Merge pull request #1163 from lsst-dm/u/roceb/fixfetchingLatestTag
Fix url for fetching latest tag
2 parents ff8a0a6 + d68c4a5 commit 778e2d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipelines/lib/util.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ def void buildOlderVersionMatrix(List LSSTVersions, products) {
11451145

11461146
def getNewestTag(){
11471147
def eupsUrl = scipipe.eups.base_url
1148-
def etbUrl = eupsUrl + "/src/tags"
1148+
def etbUrl = eupsUrl + "/src/tags/"
11491149
def command = sh(script: "curl -s \"${etbUrl}\" | grep -oE 'v[0-9]+_[0-9]+_[0-9]+' | sed 's/^v//' | sort -t'_' -k1,1n -k2,2n -k3,3n | tail -1 | tr '_' '.'", returnStdout:true).trim()
11501150

11511151
return command

0 commit comments

Comments
 (0)