Reputation: 6483
I have a batch file to commit folders to SVN, as per below:
tortoiseproc /command:commit /path:"path1*path2*path3" /closeonend:3
If I execute the above command, the spawned process starts taking loads of memory until the computer hangs - Over 8GB.
If I split the command into 3 seperate commands, as per below - it works fine:
tortoiseproc /command:commit /path:"path1" /closeonend:3
tortoiseproc /command:commit /path:"path2" /closeonend:3
tortoiseproc /command:commit /path:"path3" /closeonend:3
Any ideas why this could be?
Upvotes: 1
Views: 100