diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-11-30 17:06:26 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-11-30 17:06:26 -0400 |
commit | dbbbd4580ad55b609c3ee41f8769de35f9962ab2 (patch) | |
tree | cf7e477b3f148e512f3c9228472497f2e1909342 /doc | |
parent | b11233da2728aa2e4be93c4672553cb0b9271c11 (diff) | |
parent | deff3021ed62fc44e016c8886ff916c66f5565a0 (diff) |
Merge branch 'master' of ssh://git-annex.branchable.com
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/wget_always_shows_progress_bar.mdwn | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/bugs/wget_always_shows_progress_bar.mdwn b/doc/bugs/wget_always_shows_progress_bar.mdwn new file mode 100644 index 000000000..2829b39b0 --- /dev/null +++ b/doc/bugs/wget_always_shows_progress_bar.mdwn @@ -0,0 +1,24 @@ +### Please describe the problem. + +git annex addurl or importfeed operations were quiet on git-annex versions older than 5.20141219, if +annex.web-options was set to "--quiet". But now the --show-progress option is always passed to wget. + +In some use cases this might be nice, but I'm using GNU Parallel to update multiple podcast feeds +concurrently, and it causes wget to output the ugly "dot" indicator for every feed, which is totally +useless since parallel buffers and groups the output. Adding "--no-show-progress" to web-options +does not help (it does not override --show-progress), nor does redirecting stdout to /dev/null. +Redirecting stderr would hide possible errors. + +### What steps will reproduce the problem? + +parallel git annex importfeed --relaxed --quiet ::: http://feeds.feedburner.com/freakonomicsradio + +### What version of git-annex are you using? On what operating system? + +5.20151208-1~bpo8+1 on Debian. + +### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) + +I love git annex and use it daily. + + |