[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Passsing output of hook-script to client

From: Jochen Wendebaum <jochenSPAM_at_wendebaum.de>
Date: 2005-04-05 09:55:55 CEST

Hi,

> Is it possible to pass an error message from the pre-commit script to
> the client so that it is displayed in the dialogue? How?

I faced this problem too and solved it like this (as example):

$SVNLOOK log -t "$TXN" "$REPOS" | grep "[a-zA-Z0-9]" > /dev/null || ERROR=1
if [ $ERROR = 1 ]; then
   echo "Please provide a log entry!" >&2
   exit 1
fi

-- 
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Apr 5 10:06:11 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.