Skip to content
Snippets Groups Projects
Commit 338bd84c authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

move gatherDependenciesDeep to shell script

to avoid cluttering Jenkins log files...
parent 3e59edd7
No related branches found
No related tags found
No related merge requests found
......@@ -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()
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment