Fix release file path.

This commit is contained in:
Manuele Simi 2019-08-29 16:58:17 -04:00
parent 17494d8574
commit dababd3086
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
import groovy.json.JsonSlurper
//check and parse the release file
def inputFile = new File(".\releases\gcube-${params.gCube_release_number}.json")
def inputFile = new File("releases/gcube-${params.gCube_release_number}.json")
assert inputFile.exists() : "Release file not found (expected gcube-${params.gCube_release_number}.json)"
assert inputFile.canRead() : "Release file cannot be read"
def gcubeJSON = new JsonSlurper().parseText(inputFile)