I have this batch file to export two files from svn. But it never exports the second file, the output is “Export Complete.”
I tried using IF statement and even PAUSE, it seems the command after the first svn export is never executed.
Here is my batch file: (Note that I only export two files, not two trees)
@ECHO off
svn export URL1
svn export URL2
Version:
Subversion 1.6.15,
Win7 32bit
Have you tried swapping the URLs? Is it still the 2nd that fails? Sorry to suggest the obvious but do you definitely have the correct URL?
Try putting a
Startbefore each SVN call…This is equivalent to using Start->Run and typing in the commands. It should give some degree of separation.