Try relative path, again.

This commit is contained in:
Manuele Simi 2019-08-29 17:32:12 -04:00
parent a2740cb38f
commit 8036fba682
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)