Running NArrange from SVN pre-commit hook - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T22:34:26Zhttp://stackoverflow.com/feeds/question/680886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/680886/running-narrange-from-svn-pre-commit-hook0Running NArrange from SVN pre-commit hooknils_gate2009-03-25T09:44:35Z2009-03-25T10:49:28Z
<p>I am trying to execute <a href="http://sourceforge.net/projects/narrange/" rel="nofollow">NArrange</a> from SVN pre-commit hook using following command:</p>
<pre><code>"C:\Fullpath\narrange-console.exe" "C:\SolutionDir\SolutionFile.sln" /b /t
</code></pre>
<p>It returns with an Error: "The hook script returned an error: "</p>
<p>Any one any at rescue? <br>
<br>
<strong>EDIT:</strong> This hook are tortoisesvn client hooks.</p>
http://stackoverflow.com/questions/680886/running-narrange-from-svn-pre-commit-hook/681058#6810581Answer by Bert Huijben for Running NArrange from SVN pre-commit hookBert Huijben2009-03-25T10:46:14Z2009-03-25T10:46:14Z<p>The pre-commit hook is evaluated on the repository server; not on the client. And pre-commit hooks can't change what is to be committed. (They can only deny a commit if it is not valid for some rules).</p>
<p>You could look at tortoisesvn client hooks, or at a post commit that does a cleanup commit when a file changes. (But make sure you don't get in an endless loop :))</p>