Merge "Correct command wrapping in tarball signing script"

This commit is contained in:
Jenkins 2016-08-06 15:17:04 +00:00 committed by Gerrit Code Review
commit 0a763f5833
1 changed files with 6 additions and 6 deletions

View File

@ -26,12 +26,12 @@ TAG=$(echo $ZUUL_REF | sed 's/^refs.tags.//')
# to see if this is a universal wheel or not
DISTNAME=$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py --wheel \
|| echo $PROJECT)
TARBALL="$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py
--tarball || echo $PROJECT)-${TAG}.tar.gz"
WHEEL="$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py
--wheel || echo $PROJECT)-${TAG}-$(
/usr/local/jenkins/slave_scripts/pypi-extract-universal.py ||
true)-none-any.whl"
TARBALL=$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py \
--tarball || echo $PROJECT)-${TAG}.tar.gz
WHEEL=$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py \
--wheel || echo $PROJECT)-${TAG}-$( \
/usr/local/jenkins/slave_scripts/pypi-extract-universal.py || \
true)-none-any.whl
rm -rf *.asc *.tar.gz *.whl