Actions
Defect #8003
closedError raised by reposman.rb under Windows server 2003
Start date:
2011-03-27
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
I found a little bug in extra\svn\reposman.rb file.
When I run this script to create svn repository under Windows Server 2003, it failed:
unable to create D:\SVNRepo\test1 : undefined method `uid' for nil:NilClass
I checked the code and found the function "set_owner_and_rights", so I try to modify this line:
if RUBY_PLATFORM =~ /mswin/
to:
if mswin?
The problem fixed.
Actions