Jenkinsfile: move `try` inside the unstash loop

master
ilovezfs 2017-04-08 12:02:30 -07:00 committed by GitHub
parent a67fb9082f
commit cf0dccc7d4
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -79,13 +79,13 @@ try {
checkout()
stash_count = 0
try {
for (version in macos_versions) {
for (version in macos_versions) {
try {
unstash version
stash_count += 1
}
catch (err) {
}
stash_count += 1
}
catch (err) {
}
if (stash_count != 0) {