diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2017-01-24 10:56:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-24 10:56:20 +0000 |
commit | c2eac4583d767f7052bfad996b35105edd49ee46 (patch) | |
tree | ea61f85b55b229f277243d66b1021fd2326631db | |
parent | aa51cedd14432be1bc9a9f6e97ca2abc077ba23f (diff) | |
parent | 586a5cf54400c439f29df9e213a5ababa5d112c3 (diff) |
Merge "jjb: infra: bifrost-verify.sh: Replace 'exit' with 'return'"
-rwxr-xr-x | jjb/infra/bifrost-verify.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/infra/bifrost-verify.sh b/jjb/infra/bifrost-verify.sh index dbe39762c..48f916e72 100755 --- a/jjb/infra/bifrost-verify.sh +++ b/jjb/infra/bifrost-verify.sh @@ -24,7 +24,7 @@ function upload_logs() { gsutil -q cp -Z ${WORKSPACE}/build_log.txt ${BIFROST_GS_URL}/build_log.txt rm ${WORKSPACE}/build_log.txt - [[ ! -d ${WORKSPACE}/logs ]] && exit 0 + [[ ! -d ${WORKSPACE}/logs ]] && return 0 pushd ${WORKSPACE}/logs/ &> /dev/null for x in *.log; do |