diff options
Diffstat (limited to 'Remote/Web.hs')
-rw-r--r-- | Remote/Web.hs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Remote/Web.hs b/Remote/Web.hs index 45e8d1c22..f3580ca99 100644 --- a/Remote/Web.hs +++ b/Remote/Web.hs @@ -23,12 +23,13 @@ import Annex.Quvi import qualified Utility.Quvi as Quvi remote :: RemoteType -remote = RemoteType { - typename = "web", - enumerate = list, - generate = gen, - setup = error "not supported" -} +remote = RemoteType + { typename = "web" + , enumerate = list + , generate = gen + , setup = error "not supported" + , exportSupported = exportUnsupported + } -- There is only one web remote, and it always exists. -- (If the web should cease to exist, remove this module and redistribute |