Running NArrange from SVN pre-commit hook - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:34:26Z http://stackoverflow.com/feeds/question/680886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/680886/running-narrange-from-svn-pre-commit-hook 0 Running NArrange from SVN pre-commit hook nils_gate 2009-03-25T09:44:35Z 2009-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#681058 1 Answer by Bert Huijben for Running NArrange from SVN pre-commit hook Bert Huijben 2009-03-25T10:46:14Z 2009-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>