diff --git a/Jenkinsfile b/Jenkinsfile index 4e61a02..f43439a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ node('windows') { dir('tmp'){ git([ url: "https://github.internet2.edu/docker/util.git", credentialsId: "jenkins-github-access-token" ]) - powershell(returnStatus: true, script: 'Move-Item -Path ./bin/* -Destination ../bin/.') + powershell(returnStatus: true, script: 'Move-Item -Path ./bin/ -Destination ../bin/') } powershell(returnStatus: true, script: 'Remove-Item ./tmp -Force -Recurse') @@ -104,5 +104,5 @@ def handleError(String message){ echo "${message}" currentBuild.setResult("FAILED") //slackSend color: 'danger', message: "${message}" - bat 'exit 1' + bat exit 1 }