Browse Source

User SVN_USER and SVN_PASS if given

svn changeset:22807/svn branch:6.8
tags/7.0.0.alpha2
Artur Signell 12 years ago
parent
commit
d472d9e143
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      scripts/merge.sh

+ 7
- 1
scripts/merge.sh View File

@@ -24,7 +24,13 @@ msg="[merge from $FROM] $msg"
if [ "$AUTOCOMMIT" = "autocommit" ]
then
echo "Trying to commit..."
svn commit -m "$msg"
if [ "$SVN_USER" != "" ]
then
svn commit -m "$msg" --username $SVN_USER --password $SVN_PASS
else
svn commit -m "$msg"
fi
RET=$?
if [ "$RET" != "0" ]
then

Loading…
Cancel
Save