Skip to content

Commit

Permalink
Fixed commit.sh to explicitly include flourish.rev file when more tha…
Browse files Browse the repository at this point in the history
…n the message is specified

git-svn-id: http://svn.flourishlib.com/trunk@1033 8e09ec71-114c-0410-a285-86ecef5c4c40
  • Loading branch information
wbond committed Aug 31, 2011
1 parent 73863a3 commit d2bd3e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion classes/flourish.rev
@@ -1,2 +1,2 @@
This folder contains Flourish r1031
This folder contains Flourish r1033
Flourish is an open source PHP 5 library - see http://flourishlib.com for more information
6 changes: 5 additions & 1 deletion commit.sh
Expand Up @@ -19,4 +19,8 @@ NEW_REV=$(( $REV + 1 ))
echo "This folder contains Flourish r$NEW_REV
Flourish is an open source PHP 5 library - see http://flourishlib.com for more information" > $REV_FILE

svn ci "$@"
if [[ $# = 2 ]]; then
svn ci "$@"
else
svn ci classes/flourish.rev "$@"
fi

0 comments on commit d2bd3e6

Please sign in to comment.