summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-05-19 21:32:42 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-05-19 21:32:42 +0200
commit0391bae406896b068c9e82b76aa6c26c7928efc7 (patch)
tree5130daf8cb2f5359008e6a2b295a1454a70f540e
parente1676198f01a1ba713e1bc9705db8df80cc47cfa (diff)
README: make sure sfeed_update errors don't write to stderr
It would mess up the output since the progress bar writes to stderr aswell.
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 92d77fe..7753a8e 100644
--- a/README
+++ b/README
@@ -1014,7 +1014,7 @@ Alternative: pv -l -s totallines
config="${1:-$HOME/.sfeed/sfeedrc}"
total=$(countfeeds "${config}")
- sfeed_update "${config}" | progress "${total}"
+ sfeed_update "${config}" 2>&1 | progress "${total}"
- - -