I am trying to get a post-commit svn hook to work. The post commit bat file has the following contents:
"c:\program files\visualsvn server\bin\svn.exe" update "repository local address" --non-interactive --trust-server-cert --username user --password pass
When i run this command from the cmd prompt it works fine and it updates to the latest revision without issues.
However, when I double click on the bat file or when visual svn server runs the hook, I get the following error:
Unable to connect to a repository at URL 'https://xxxxx/dvn/fff' OPTION of 'https://xxxxx/dvn/fff': authorization failed: Could not authenticate to server: rejected Basic challenge
I have tried setting
store-passwords = yes
store-auth-creds = yes
but issue persists
any ideas?