Commit in GeomConverter on MAIN
buildDist.sh+14-11.2 -> 1.3
Dist build script uses Windows path when running from Cygwin.

GeomConverter
buildDist.sh 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- buildDist.sh	14 Jul 2005 20:38:17 -0000	1.2
+++ buildDist.sh	22 Aug 2005 04:07:59 -0000	1.3
@@ -1 +1,14 @@
-maven -Drun.install=`pwd` -Dmaven.test.skip=true clean jar:install run:install
+#!/bin/sh
+
+if [ -n $(uname | grep CYGWIN) ]
+then 
+  install_dir=$(cygpath -w $(pwd))
+else
+  install_dir=$(pwd)
+fi
+
+echo "install_dir=$install_dir"
+
+maven -Drun.install=${install_dir} \
+      -Dmaven.test.skip=true clean \
+      jar:install run:install
CVSspam 0.2.8