From 000306c9c1ee0564589c3d5337c3146ce58fe25e Mon Sep 17 00:00:00 2001 From: Tomasz Jurtsch Date: Fri, 10 Jul 2020 11:39:11 +0200 Subject: [PATCH] .travis/common.sh: use --old-build-string to get output package name Signed-off-by: Tomasz Jurtsch --- .travis/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/common.sh b/.travis/common.sh index 89c22ec5..8a2a5a7d 100644 --- a/.travis/common.sh +++ b/.travis/common.sh @@ -51,7 +51,7 @@ export PATH="$CONDA_PATH/bin:$PATH" export GIT_SSL_NO_VERIFY=1 export GITREV="$(git describe --long 2>/dev/null || echo "unknown")" export CONDA_BUILD_ARGS=$PACKAGE -export CONDA_OUT="$(conda render --output $CONDA_BUILD_ARGS 2> /dev/null | grep conda-bld | grep tar.bz2 | sed -e's/-[0-9]\+\.tar/*.tar/' -e's/-git//' | tr '\n' ';')" +export CONDA_OUT="$(conda render --old-build-string --output $CONDA_BUILD_ARGS 2> /dev/null | grep conda-bld | grep tar.bz2 | sed -e's/-[0-9]\+\.tar/*.tar/' -e's/-git//' | tr '\n' ';')" export UHDM_INTEGRATION_REV="$(git ls-remote https://github.com/alainmarcel/uhdm-integration.git HEAD | awk '{ print $1}')" echo " GITREV: $GITREV"