add print after read

This commit is contained in:
Roberto Cirillo 2023-02-07 12:38:03 +01:00
parent 1c521e2344
commit c3fb6b7617
1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -154,7 +154,11 @@ def push(repo_url, repo_name, tag, gCube_release_version, commit) {
}
fileContent = readJSON(file: "export.json", encoding: "UTF-8")
}
postCall(fileContent)
def lines = fileContent.readLines()
for (line in lines) {
println line
}
// postCall(fileContent)
}