diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-28 14:54:02 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-28 14:54:02 -0400 |
commit | ba81a7b4abcc4b14072bc8d717191151a50614c8 (patch) | |
tree | 6831e53dca9737115cc8ac4f1e72689f1e17e02c /Command/AddUrl.hs | |
parent | b97207881a3336a4e8befe90e530954def022d93 (diff) |
Probe for quvi version at run time.
Overhead: git annex addurl runs quvi --version once.
And more bloat to Annex state..
Diffstat (limited to 'Command/AddUrl.hs')
-rw-r--r-- | Command/AddUrl.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/AddUrl.hs b/Command/AddUrl.hs index ae56908c1..a0978a88d 100644 --- a/Command/AddUrl.hs +++ b/Command/AddUrl.hs @@ -64,7 +64,7 @@ start relaxed optfile pathdepth s = go $ fromMaybe bad $ parseURI s QuviDownloader -> usequvi DefaultDownloader -> #ifdef WITH_QUVI - ifM (liftIO $ Quvi.supported s') + ifM (quviSupported s') ( usequvi , regulardownload url ) |