From da5441586c71d7d15b20bf6d2ed47c90cf21ae69 Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Mon, 25 Mar 2019 14:09:24 +0100 Subject: [PATCH] Remove ../bin/windows (temporarily) --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3d21081..2021ac0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,8 +25,9 @@ pipeline { dir ('tmp') { git([ url: "https://github.internet2.edu/docker/util.git", credentialsId: "jenkins-github-access-token" ]) sh 'ls -l' - sh 'ls -l ../bin' - sh 'mv -f bin/* ../bin/.' + sh 'ls -lR ../bin' + sh 'rm -r ../bin/windows || true' + sh 'mv bin/* ../bin/.' } // Build and test scripts expect that 'tag' is present in common.bash. This is necessary for both Jenkins and standalone testing. // We don't care if there are more 'tag' assignments there. The latest one wins.