diff options
author | Zhijiang Hu <hu.zhijiang@zte.com.cn> | 2017-02-22 09:19:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-22 09:19:06 +0000 |
commit | f4a614caf60085929165a21f7c1bfe5d5f47fb09 (patch) | |
tree | b8007c468a62e3e441097aba2a9d0619835f9b8f /ci/deploy | |
parent | 348d21c371ea54fd904784b9d9236081e56912be (diff) | |
parent | cecb07ffac55ed186389557140f3b6f44806b0a4 (diff) |
Merge "Add executable attribute to opnfv bin file"
Diffstat (limited to 'ci/deploy')
-rwxr-xr-x | ci/deploy/deploy.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/deploy/deploy.sh b/ci/deploy/deploy.sh index a24289c7..238b1ad5 100755 --- a/ci/deploy/deploy.sh +++ b/ci/deploy/deploy.sh @@ -179,6 +179,11 @@ if [ $DRY_RUN -eq 1 ]; then exit 1 fi +if [ ! -x ${WORKSPACE}/opnfv.bin ]; then + echo "opnfv.bin does not exist in WORKSPACE or is not executable, exit." + exit 1 +fi + test -d ${VM_STORAGE} || mkdir -p ${VM_STORAGE} function create_node |