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

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.

Replies are listed 'Best First'.
Re^5: SVN::Client not committing?
by svenXY (Deacon) on Jan 19, 2011 at 11:59 UTC
    Hi,

    ++Avi - that certainly helped me a lot, thanks.
    Regards,
    svenXY