Hi Everyone,
I am setting up a SVN server in a windows environment: Whenever a tag is made, the post-commit script export a certain number of information about the tag (like author, comments, dependencies ...).
I also want to attach specific files from the tagged repository. To do so, I have been trying the "svn export" commands. This work fine for a "simulated" tag, but does not work using the svn client (tortoise).
svn export --username foo --password bar svn://localhost/My_SVN_DB/tags/My_Tag/My_File.txt My_Export_Directory
I checked the following:
- Syntax of the command --> Seems to be ok, it works when calling the post commit and passing test arguments
- Access rights for My_Export_Directory --> Seems to be ok as the script write also a debug file there
Now I am wondering if the tag structure is already present when executing the post commit script? (I thought it was..?)
Any ideas ?