From c3fb6b7617e2f7c88433b582f43323b63b317fce Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Tue, 7 Feb 2023 12:38:03 +0100 Subject: [PATCH] add print after read --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a270d88..7c8706f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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) }