Skip to content
Snippets Groups Projects
Commit ac0f8b58 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

fix

parent d0f8ce65
No related branches found
No related tags found
No related merge requests found
...@@ -221,7 +221,8 @@ script: ...@@ -221,7 +221,8 @@ script:
fi fi
# build conda package # build conda package
- if test -n "$PLUMED_CONDA" ; then VERSION="${TRAVIS_TAG:-unspecified}" make -C conda ; fi - if test -n "${TRAVIS_TAG}" ; then CONDA_VERSION="${TRAVIS_TAG//-/_}" ; else CONDA_VERSION=unspecified ; fi
- if test -n "$PLUMED_CONDA" ; then VERSION="$CONDA_VERSION" make -C conda ; fi
# build docker container # build docker container
- if test "$PLUMED_DOCKER" = yes ; then make -C docker ; fi - if test "$PLUMED_DOCKER" = yes ; then make -C docker ; fi
...@@ -264,4 +265,4 @@ after_success: ...@@ -264,4 +265,4 @@ after_success:
- if test "$MAKECOVERAGE" == yes ; then ./.travis/push coverage ; fi - if test "$MAKECOVERAGE" == yes ; then ./.travis/push coverage ; fi
- if test "$MAKECOVERAGE" == yes ; then bash <(curl -s https://codecov.io/bash) > /dev/null ; fi - if test "$MAKECOVERAGE" == yes ; then bash <(curl -s https://codecov.io/bash) > /dev/null ; fi
# upload conda package # upload conda package
- if test -n "$PLUMED_CONDA" && test -n "$TRAVIS_TAG" ; then VERSION="$TRAVIS_TAG" make -C conda upload ; fi - if test -n "$PLUMED_CONDA" && test -n "$TRAVIS_TAG" ; then VERSION="$CONDA_VERSION" make -C conda upload ; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment