diff options
author | Joey Hess <joeyh@joeyh.name> | 2014-12-11 12:47:57 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2014-12-11 12:47:57 -0400 |
commit | bc0bf97b20c48e1d1a35d25e2e76a311c102438c (patch) | |
tree | 05934001ff6b3060cb477a1bd017316827eb050b /Command/RmUrl.hs | |
parent | 7f5e752b41b559bce358a9d6a053a7b195706e80 (diff) |
let url claims optionally include a suggested filename
Diffstat (limited to 'Command/RmUrl.hs')
-rw-r--r-- | Command/RmUrl.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/RmUrl.hs b/Command/RmUrl.hs index 570004266..737c935c5 100644 --- a/Command/RmUrl.hs +++ b/Command/RmUrl.hs @@ -10,6 +10,7 @@ module Command.RmUrl where import Common.Annex import Command import Logs.Web +import Annex.URLClaim import qualified Remote cmd :: [Command] @@ -27,7 +28,7 @@ start (file, url) = flip whenAnnexed file $ \_ key -> do cleanup :: String -> Key -> CommandCleanup cleanup url key = do - r <- Remote.claimingUrl url + r <- fst <$> urlClaim url let url' = if Remote.uuid r == webUUID then url else setDownloader url OtherDownloader |