add print after read

master
Roberto Cirillo 1 year ago
parent 1c521e2344
commit c3fb6b7617

6
Jenkinsfile vendored

@ -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)
}

Loading…
Cancel
Save