Permalink
Browse files
Make moving files more robust
- Loading branch information
Showing
with
3 additions
and
2 deletions.
-
+3
−2
Jenkinsfile
|
@@ -24,8 +24,9 @@ pipeline { |
|
|
sh 'mkdir -p tmp' |
|
|
dir ('tmp') { |
|
|
git([ url: "https://github.internet2.edu/docker/util.git", credentialsId: "jenkins-github-access-token" ]) |
|
|
sh 'ls' |
|
|
sh 'mv bin/* ../bin/.' |
|
|
sh 'ls -l' |
|
|
sh 'ls -l ../bin' |
|
|
sh 'mv -f 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. |
|
|