I have a variable called %SvnPathBranch% which can either be empty or have a value in it.
I have another variable call %SvnPath% which is set by default to "http:\\mypathtrunk"
if (%SvnPathBranch% is not empty)
{
%SvnPath% = %SvnPathBranch%
}
How can I do this?