[Rt-commit] r5969 - in commitbit: .

jesse at bestpractical.com jesse at bestpractical.com
Sat Sep 16 21:05:26 EDT 2006


Author: jesse
Date: Sat Sep 16 21:05:26 2006
New Revision: 5969

Modified:
   commitbit/   (props changed)
   commitbit/trunk/lib/CommitBit/Model/Repository.pm

Log:
 r27605 at pinglin:  jesse | 2006-09-17 02:05:08 +0100
 * try to write the authz file correctly


Modified: commitbit/trunk/lib/CommitBit/Model/Repository.pm
==============================================================================
--- commitbit/trunk/lib/CommitBit/Model/Repository.pm	(original)
+++ commitbit/trunk/lib/CommitBit/Model/Repository.pm	Sat Sep 16 21:05:26 2006
@@ -218,7 +218,7 @@
         open( my $file, ">", $self->svnconf_file_path('authz') ) || die $@;
         print $file $self->autogenerated_file_warning;
         while ( my $project = $projects->next ) {
-            print $file "[" . $project->root_path . "]\n" || die $@;
+            print $file "[/" . $project->root_path . "]\n" || die $@;
             foreach my $user ( @{ $project->members->items_array_ref } ) {
                 print $file $user->email . " = rw\n" || die $@;
             }


More information about the Rt-commit mailing list