summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Utility/Quvi.hs4
-rw-r--r--debian/changelog1
2 files changed, 3 insertions, 2 deletions
diff --git a/Utility/Quvi.hs b/Utility/Quvi.hs
index 5df1a4da7..cce02d646 100644
--- a/Utility/Quvi.hs
+++ b/Utility/Quvi.hs
@@ -68,10 +68,10 @@ check ps url = maybe False (not . null . pageLinks) <$> query ps url
{- Checks if an url is supported by quvi, without hitting it, or outputting
- anything. Also returns False if quvi is not installed. -}
supported :: URLString -> IO Bool
-supported url = boolSystem "quvi" [Params "-v mute --support", Param url]
+supported url = boolSystem "quvi" [Params "--verbosity mute --support", Param url]
quiet :: CommandParam
-quiet = Params "-v quiet"
+quiet = Params "--verbosity quiet"
noredir :: CommandParam
noredir = Params "-e -resolve"
diff --git a/debian/changelog b/debian/changelog
index 37eb1dffd..c858cab8b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
git-annex (5.20131121) UNRELEASED; urgency=low
* Futher improvements to git repair.
+ * Avoid misbehavior when addurl is used with quvi 0.9.
-- Joey Hess <joeyh@debian.org> Wed, 20 Nov 2013 18:30:47 -0400