X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=fuel%2Fci%2Fdeploy.sh;h=d5b70d0d69ae67f6851e8fbeb2a619edd29f28d8;hb=9c9a2ec11f2baebe31a20de16706ae58f303665f;hp=d11c65aedb37a3191825b66eca2ed41fb34a5f78;hpb=1e066de62f2b4bcc833ce62a16efdcbf71d3dd9b;p=genesis.git diff --git a/fuel/ci/deploy.sh b/fuel/ci/deploy.sh index d11c65a..d5b70d0 100755 --- a/fuel/ci/deploy.sh +++ b/fuel/ci/deploy.sh @@ -1,3 +1,8 @@ -# To be able to deploy on a certain metal environment there needs to be a Deployment Environment Adaptor executable" -# properly added to $PATH such that deploy.sh can call it by $dea [options] as indicated by ./deploy -h. - +#!/bin/bash +set -o errexit +topdir=$(dirname $(readlink -f $BASH_SOURCE)) +deploydir=$(cd ${topdir}/../deploy; pwd) +pushd ${deploydir} > /dev/null +echo -e "python deploy.py $@\n" +python deploy.py $@ +popd > /dev/null \ No newline at end of file