[5.6] update `release.sh` as in `5.7`. (#25687)

This commit is contained in:
Tetiana Blindaruk 2018-09-19 15:50:50 +03:00 committed by Taylor Otwell
parent 05fc617d68
commit e8bc9fb2a4
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ do
echo "Releasing $REMOTE";
TMP_DIR="/tmp/laravel-split"
REMOTE_URL=`git remote get-url $REMOTE`
REMOTE_URL="git@github.com:illuminate/$REMOTE.git"
rm -rf $TMP_DIR;
mkdir $TMP_DIR;
@ -29,7 +29,7 @@ do
git clone $REMOTE_URL .
git checkout "$CURRENT_BRANCH";
git tag $1 -s -m "Release $1"
git tag $1
git push origin --tags
)
done