Fix tag checkout during release

This commit is contained in:
Lucas Bickel 2017-03-15 17:07:52 +01:00
parent 0a2b3744d3
commit 1c3d8b57f4

View file

@ -46,7 +46,8 @@ echo " Done"
pushd $target
echo -n "Checking out tag ${suffix}..."
git checkout --quiet ${suffix}
git fetch --quiet --tags
git checkout --quiet tags/${suffix}
echo " Done"
echo -n "Running composer install..."