[GRASS-SVN] r48208 - grass/branches/develbranch_6
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Sep 8 04:58:10 EDT 2011
Author: hamish
Date: 2011-09-08 01:58:10 -0700 (Thu, 08 Sep 2011)
New Revision: 48208
Modified:
grass/branches/develbranch_6/SUBMITTING_SCRIPTS
Log:
don't encourage bashism
Modified: grass/branches/develbranch_6/SUBMITTING_SCRIPTS
===================================================================
--- grass/branches/develbranch_6/SUBMITTING_SCRIPTS 2011-09-08 08:56:39 UTC (rev 48207)
+++ grass/branches/develbranch_6/SUBMITTING_SCRIPTS 2011-09-08 08:58:10 UTC (rev 48208)
@@ -134,7 +134,7 @@
8. Testing the existence of variables. For portability, use
if [ -z "$VARIABLE" ] ; then
instead of
- if [ "$VARIABLE" == "" ] ; then
+ if [ "$VARIABLE" = "" ] ; then
and
More information about the grass-commit
mailing list