diff options
author | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-04-03 05:35:27 +0000 |
---|---|---|
committer | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-04-03 05:35:27 +0000 |
commit | b67196447f4f2c5eda6abf9ed97dc9c3a02c8fc4 (patch) | |
tree | 39509941ad68b1d0b8f85d92323113f893fe0986 | |
parent | 3e7ce67993960a7a3b6306c26d9afc22ed4a377d (diff) |
BUILD : 1.7.0 (26) BUGS : none NOTES : Testing svn access with a new am script.
git-svn-id: svn://svn.anope.org/anope/trunk@26 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@17 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 2 | ||||
-rwxr-xr-x | bin/am | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 3 deletions
@@ -1,7 +1,7 @@ Anope Version 1.7.0 -------------------- Provided by Anope Dev. <dev@anope.org> -2004/04/01 Added memo2mail and /msg memoserv set notify MAIL/NOMAIL +2004/04/01 Added memo2mail and /msg memoserv set notify MAIL/NOMAIL. 2004/03/31 Fixed MySQL double encryption if using MD5. 2004/03/31 Implemented MySQL Phase2 (see docs/MYSQL file) 2004/03/31 Modules can now add Commands/Messages from outside of AnopeInit. @@ -23,12 +23,14 @@ my $fhint="version.log"; # Default values, change or use environment variables instead. my $copy="anope"; +my $svnuser=""; my $svnpath="/usr/bin"; my $svnroot="svn://zero.org/repos/$copy"; my $editor="/usr/bin/vi"; # Environment variables SVNBINDIR and SVNROOT override the above # hardcoded values. +$svnuser="$ENV{SVNUSER}" if ($ENV{SVNUSER}); $svnpath="$ENV{SVNBINDIR}" if ($ENV{SVNBINDIR}); $svnroot="$ENV{SVNROOT}" if ($ENV{SVNROOT}); $editor="$ENV{EDITOR}" if ($ENV{EDITOR}); @@ -372,7 +374,7 @@ NOTES : "; close(OUT); print "*** Starting the upload...\n\n"; - my $rval=system("$svn commit $dst --message '$svn_comment'"); + my $rval=system("$svn commit $dst --username='$svnuser' --message '$svn_comment'"); if ( $rval ) { print "*** Error: Unable to complete commit. Rolling back....\n\n"; system("$svn revert $ctrlfile"); diff --git a/version.log b/version.log index 92a163fc3..b275639e0 100644 --- a/version.log +++ b/version.log @@ -8,11 +8,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="0" -VERSION_BUILD="25" +VERSION_BUILD="26" VERSION_EXTRA="" # $Log$ # +# BUILD : 1.7.0 (26) +# BUGS : none +# NOTES : Testing svn access with a new am script. +# # BUILD : 1.7.0 (25) # BUGS : # NOTES : Added memo2mail and /msg memoserv set notify MAIL/NOMAIL |