in reply to Using grep on windows
Moreover, I'll bet that perl doesn't like exit1; - I think you meant exit 1;.
Also, I've just noticed that both $committer & $commitlog only define strings - neither causes a command to run in the shell - you need backticks or qx to do that hence $committer should be set using
Similarly with setting of $commitlog...$committer = `$svnlook author $txn_name $repo_path` or die "Unable to +get committer with svnlook.\n";
|
|---|