I'm trying to use a CFEXECUTE command to generate an SVN log file for me. The problem I'm running into is the log file is coming back empty. I'm using SlikSVN and BlueDragon 7.1.0 on a Windows 7 machine:
<cftry>
<cfset svnDir = "http://SVNSERVER" />
<cfset svnExe = "C:\Program Files\SlikSvn\bin\svn.exe" />
<cfset svnArg = 'log --xml -v #svnDir#' />
<cfexecute name="#svnExe#" arguments="#svnArg#" timeout="10" variable="changes">
</cfexecute>
<cfdump var="#changes#">
<cfcatch><cfdump var="#cfcatch#"></cfcatch>
</cftry>
The result I get is:
<?xml version="1.0" encoding="UTF-8"?> <log>
I'm running the BlueDragon service under my credentials. I've also tried adding in my SVN credentials to the arguments and it still generates an empty log. I've also tried checking out the SVN repository to a local folder and using that as a path.
Any help would be greatly appreciated, I've been fighting this for a while now. :)
Thanks!