From 338bd84cdd8c023ca955850ffc5c90fb328379b8 Mon Sep 17 00:00:00 2001
From: Martin Hierholzer <martin.hierholzer@desy.de>
Date: Tue, 19 Apr 2022 16:57:48 +0200
Subject: [PATCH] move gatherDependenciesDeep to shell script

to avoid cluttering Jenkins log files...
---
 vars/helper.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/helper.groovy b/vars/helper.groovy
index 4efb573..fc6cc75 100644
--- a/vars/helper.groovy
+++ b/vars/helper.groovy
@@ -84,7 +84,7 @@ def gatherDependenciesDeep(ArrayList<String> dependencyList) {
     
     def stringList = dependencyList.join(' ')
     def output = sh ( script: "/home/msk_jenkins/findDependenciesDeep ${stringList}", returnStdout: true ).trim()    
-    def deepList = new ArrayList<String>(Arrays.asList(output.split("\n"))))
+    def deepList = new ArrayList<String>(Arrays.asList(output.split("\n")))
     return deepList.unique()
     
     /*
-- 
GitLab