Skip to content

Commit

Permalink
Fix wrong log parsing when creating releases (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague committed Jan 8, 2018
1 parent b0e566c commit ca2e02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/release.sh
Expand Up @@ -88,7 +88,7 @@ if [ "$MODE" = "PRERELEASE" ]; then
docker push lynckia/licode:${NEXT_PRERELEASE_NAME}
docker push lynckia/licode:staging

LOGS=`git log $PREVIOUS_VERSION..$COMMIT --oneline | perl -p -e 's/\n/\\\\n/'` | sed -e s/\"//g
LOGS=`git log $PREVIOUS_VERSION..$COMMIT --oneline | perl -p -e 's/\n/\\\\n/' | sed -e s/\"//g`
DESCRIPTION="### Detailed PR List:\\n$LOGS"

if [ "$URL" = "null" ]; then
Expand Down

0 comments on commit ca2e02c

Please sign in to comment.