[geos-commits] r3652 - trunk/tools

svn_geos at osgeo.org svn_geos at osgeo.org
Tue May 29 02:48:53 PDT 2012


Author: strk
Date: 2012-05-29 02:48:53 -0700 (Tue, 29 May 2012)
New Revision: 3652

Modified:
   trunk/tools/svn_repo_revision.sh
Log:
Fix test for directory existance


Modified: trunk/tools/svn_repo_revision.sh
===================================================================
--- trunk/tools/svn_repo_revision.sh	2012-05-29 09:45:23 UTC (rev 3651)
+++ trunk/tools/svn_repo_revision.sh	2012-05-29 09:48:53 UTC (rev 3652)
@@ -7,9 +7,9 @@
 
 read_rev() {
 
-    if test -d $top_srcdir."/.svn"; then
+    if test -d $top_srcdir"/.svn"; then
       read_rev_svn
-    elif test -d $top_srcdir."/.git"; then
+    elif test -d $top_srcdir"/.git"; then
       read_rev_git
     else
       echo "Can't fetch local revision (neither .svn nor .git found)" >&2



More information about the geos-commits mailing list