Skip to content
This repository has been archived by the owner on Dec 28, 2017. It is now read-only.

Commit

Permalink
deploy scripts: fix new line in build message
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Shvets committed Apr 6, 2013
1 parent 3189597 commit 6f09a01
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tools/deploy.push-build
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ DATE=`date "+%Y-%m-%d %H:%M"`
BUILD_NAME="Build $VERSION ($DATE)"
CHANGELOG=`git log --pretty=format:"%s" --graph --branches --not --remotes`

MESSAGE="$BUILD_NAME \
$CHANGELOG"

MESSAGE=`echo -e "$BUILD_NAME \r\n$CHANGELOG"`
./deploy.html-pages "$MESSAGE"
./deploy.wiki "$MESSAGE"

cd ../

echo -e "\r\n### $BUILD_NAME \r\n\r\n$CHANGELOG" > tmp/last-build.log
echo -e "### $MESSAGE" > tmp/last-build.log.md
git commit -a -m "$MESSAGE"
#git push

Expand Down

0 comments on commit 6f09a01

Please sign in to comment.