Sreenath GV

Sreenath GV

  • NA
  • 22
  • 39.6k

SVN Update at Server side using ASP.Net Web Application

Apr 16 2012 9:08 AM
 

Hi,

I have created one batch file to run SVN update through ASP.Net web application. It is working fine at my computer and it updated all folders. But when I deploy it and run the same batch at server side through page, it is not been updated.

Point to note is, I am able to execute the same batch at server side manually.

Here is my batch files content..

/---------------------------- 
 
@echo off 
 
set SOURCE=my source path to update 
set SVN=C:\Program Files\TortoiseSVN\bin\ 
 
"%SVN%\svn.exe" cleanup %SOURCE% 
 
"%SVN%\TortoiseProc.exe" /
command:update /path:"%SOURCE%" /closeonend:1 
 
set SOURCE= 
set SVN= 
 
/---------------------------- 

Please help out.