in reply to Re^2: SVN::Client not committing?
in thread SVN::Client not committing?

Was there any answer to this in the end? I am suffering from the same problem.

Duncs

Replies are listed 'Best First'.
Re^4: SVN::Client not committing?
by Avi (Acolyte) on Feb 03, 2010 at 07:18 UTC
    not very great docs indeed.. the issue is the log_msg (nice that it doesn't report it).. use something like this instead:
        my $log_msg_handler = sub {
            my $stringptr = shift;
            $$stringptr = "testing mkdir";
            return 1;
        };
        $svn->log_msg($log_msg_handler);
    
    That should do the trick -- hopefully this prevents someone pulling out their hair.
      Hi,

      ++Avi - that certainly helped me a lot, thanks.
      Regards,
      svenXY
Re^4: SVN::Client not committing?
by zigdon (Deacon) on Jun 18, 2008 at 22:39 UTC
    Sadly, I never did figure it out. Ended up writing the code in python, as the svn bindings there were more mature. Of course, it's been almost 2 years since then, so hopefully that is no longer the case.

    -- zigdon