diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-02 13:47:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-02 13:47:45 -0400 |
commit | a3daac8a8b06bbe2f35ca16cc1b27e21cad8a0e1 (patch) | |
tree | ea6bc56c9a70014279c83e1d440476a2c032d1a9 /Backend/URL.hs | |
parent | 70a6eb6d73b3e302b9b9c02342581fada25dcad9 (diff) |
only enable SHA backends that configure finds support for
Diffstat (limited to 'Backend/URL.hs')
-rw-r--r-- | Backend/URL.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Backend/URL.hs b/Backend/URL.hs index 864c79301..29dc8fefa 100644 --- a/Backend/URL.hs +++ b/Backend/URL.hs @@ -5,7 +5,7 @@ - Licensed under the GNU GPL version 3 or higher. -} -module Backend.URL (backend) where +module Backend.URL (backends) where import Control.Monad.State (liftIO) import Data.String.Utils @@ -15,6 +15,9 @@ import BackendTypes import Utility import Messages +backends :: [Backend Annex] +backends = [backend] + backend :: Backend Annex backend = Backend { name = "URL", |