Skip to content

Commit

Permalink
Remove double quotes in the release description (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Dec 21, 2017
1 parent 3a07e1f commit 334b536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/release.sh
Original file line number Diff line number Diff line change
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/'`
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 334b536

Please sign in to comment.