[GRASS-SVN] r44563 - grass/branches/develbranch_6/scripts/r.in.wms

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Dec 8 04:04:52 EST 2010


Author: hamish
Date: 2010-12-08 01:04:52 -0800 (Wed, 08 Dec 2010)
New Revision: 44563

Modified:
   grass/branches/develbranch_6/scripts/r.in.wms/r.in.wms
Log:
wget's --quiet also shuts off error messages completely. Use the -nv (non-verbose) flag for a less silent quietness

Modified: grass/branches/develbranch_6/scripts/r.in.wms/r.in.wms
===================================================================
--- grass/branches/develbranch_6/scripts/r.in.wms/r.in.wms	2010-12-08 08:58:59 UTC (rev 44562)
+++ grass/branches/develbranch_6/scripts/r.in.wms/r.in.wms	2010-12-08 09:04:52 UTC (rev 44563)
@@ -335,7 +335,7 @@
 
 	if [ "$GIS_FLAG_G" -eq 0 ] ; then
 	    if [ "$USE_WGET" ] ; then
-		wget --quiet $GIS_OPT_WGETOPTIONS --post-data="${STRING}" \
+		wget -nv $GIS_OPT_WGETOPTIONS --post-data="${STRING}" \
 		  "$GIS_OPT_MAPSERVER" -O "$CAPABILITIES_FILE"
 		message 1 "wget $GIS_OPT_WGETOPTIONS --post-data=\"${STRING}\" \"$GIS_OPT_MAPSERVER\" -O \"$CAPABILITIES_FILE\";"
 	    else



More information about the grass-commit mailing list