[GRASS-SVN] r57683 - grass/branches/releasebranch_6_4
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Sep 13 22:56:11 PDT 2013
Author: hamish
Date: 2013-09-13 22:56:11 -0700 (Fri, 13 Sep 2013)
New Revision: 57683
Modified:
grass/branches/releasebranch_6_4/SUBMITTING_SCRIPTS
Log:
don't encourage bashism (merge r48208 from devbr6)
Modified: grass/branches/releasebranch_6_4/SUBMITTING_SCRIPTS
===================================================================
--- grass/branches/releasebranch_6_4/SUBMITTING_SCRIPTS 2013-09-14 05:47:57 UTC (rev 57682)
+++ grass/branches/releasebranch_6_4/SUBMITTING_SCRIPTS 2013-09-14 05:56:11 UTC (rev 57683)
@@ -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