[GRASS5] Re: grass5 digest, Vol 1 #1142 - 10 msgs

I fixed the offending items in this and another script last night (they were inherited from older scripts, but I haven't found the culprit yet) and sent them to Scott to update in the CVS.

Michael
______________________________
Michael Barton, Professor & Curator
School of Human Origins, Cultures, & Societies
Arizona State University
Tempe, AZ 85287-2402
USA

voice: 480-965-6262; fax: 480-965-7671
www: http://www.public.asu.edu/~cmbarton
On May 6, 2004, at 3:01 AM, grass5-request@grass.itc.it wrote:

Hi,

On Wed, May 05, 2004 at 03:49:30AM +0200, grass@intevation.de wrote:

Author: scott

Update of /grassrepository/grass/src/scripts/contrib/s.sv2svfit

[...]

# what to do in case of user break:
function exitprocedure()
{
echo "User break!"
#cleanup
exit 1
}

Just a hint: The word "function" should be avoided. It
causes problems under Cygwin (AFAIK).

So:

exitprocedure()
{
echo "User break!"
#cleanup
exit 1
}

Please recheck the uploads from yesterday.

Thanks,

Markus