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

remove initial v from tag name

parent 5b507c40
No related branches found
No related tags found
No related merge requests found
...@@ -222,8 +222,11 @@ script: ...@@ -222,8 +222,11 @@ script:
done done
fi fi
# build conda package # set CONDA_VERSION to TRAVIS_TAG, if available
- if test -n "${TRAVIS_TAG}" ; then CONDA_VERSION="${TRAVIS_TAG//-/_}" ; else CONDA_VERSION=unspecified ; fi - if test -n "${TRAVIS_TAG}" ; then CONDA_VERSION="${TRAVIS_TAG//-/_}" ; else CONDA_VERSION=unspecified ; fi
# remove initial v - only makes sense with official releases
- CONDA_VERSION="${CONDA_VERSION#v}"
# build conda package
- if test -n "$PLUMED_CONDA" ; then VERSION="$CONDA_VERSION" make -C conda ; fi - if test -n "$PLUMED_CONDA" ; then VERSION="$CONDA_VERSION" make -C conda ; fi
# build docker container # build docker container
......
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