[GRASS-SVN] r37509 - grass/branches/develbranch_6/lib/init
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue May 26 10:00:33 EDT 2009
Author: hamish
Date: 2009-05-26 10:00:33 -0400 (Tue, 26 May 2009)
New Revision: 37509
Modified:
grass/branches/develbranch_6/lib/init/grass-run.src
Log:
`read` by itself is a bashism (debian bug# 530092)
Modified: grass/branches/develbranch_6/lib/init/grass-run.src
===================================================================
--- grass/branches/develbranch_6/lib/init/grass-run.src 2009-05-26 13:47:23 UTC (rev 37508)
+++ grass/branches/develbranch_6/lib/init/grass-run.src 2009-05-26 14:00:33 UTC (rev 37509)
@@ -35,11 +35,11 @@
if [ $EXIT_VAL -ne 0 ] ; then
echo
echo "ERROR: \"$1\" exited abnormally. Press <enter> to continue."
- read
+ read dummy_var
else
echo
echo "\"$1\" complete. Press <enter> to continue."
- read
+ read dummy_var
fi
exit $EXIT_VAL
More information about the grass-commit
mailing list