summaryrefslogtreecommitdiffstats
path: root/lib/feed.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-08-18 09:42:43 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-08-18 09:42:43 (EDT)
commit4992c8bf62155ab3e2e9fa8bf8443e107c955b7b (patch)
tree33716e39cc7789abb7f17b863ba4fb72edef3792 /lib/feed.sh
parent45e68876aee3dc64b6e17aae810a7e17ef8257a7 (diff)
feed_download(): Add -q option to wget command
Diffstat (limited to 'lib/feed.sh')
-rw-r--r--lib/feed.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feed.sh b/lib/feed.sh
index 08e7acd..4b1d123 100644
--- a/lib/feed.sh
+++ b/lib/feed.sh
@@ -36,7 +36,7 @@ feed_download()
{
local feed_index="${1}"
- wget -O - "${feed_index}"
+ wget -q -O - "${feed_index}"
return 0
}