The following groovy runs nice and quick on the master, but on my slave it takes 6-7 minutes!!
def proc = "ssh -T [email protected]".execute() def b = new StringBuffer() proc.consumeProcessErrorStream(b) println proc.text println b.toString() Any help would be much appreciated!!
