From: Alexandru Avadanii Date: Fri, 24 Aug 2018 22:43:56 +0000 (+0200) Subject: [build.sh] Use pipenv run instead of shell X-Git-Tag: opnfv-7.0.0~85 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F61353%2F8;p=fuel.git [build.sh] Use pipenv run instead of shell JIRA: FUEL-383 Change-Id: Ia1b58f9e7eefd9f3efc4b5241ec496c545ccee25 Signed-off-by: Alexandru Avadanii --- diff --git a/ci/build.sh b/ci/build.sh index 3c8a5e7e9..a51a1358f 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -70,16 +70,16 @@ pushd "${DOCKER_DIR}" > /dev/null pipenv --two pipenv install -pipenv shell \ - "invoke build saltmaster-reclass \ +pipenv install invoke +pipenv run \ + invoke build saltmaster-reclass \ --require 'salt salt-formulas opnfv reclass tini-saltmaster' \ --dist=ubuntu \ --dist-rel=xenial \ --formula-rev=nightly \ --opnfv-tag='${DOCKER_TAG}' \ --salt='stable 2017.7' \ - ${DOCKER_PUSH}; \ - exit" + ${DOCKER_PUSH} popd > /dev/null