remove debug

This commit is contained in:
Joey Hess 2024-05-21 11:46:14 -04:00
parent dc083bf8c8
commit 7f768aef77
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -454,8 +454,7 @@ parseSpecialRemoteUrl url remotename = case parseURI url of
-- Runs an action with a Remote as specified by the SpecialRemoteConfig.
withSpecialRemote :: SpecialRemoteConfig -> StartAnnexBranch -> (Remote -> Annex a) -> Annex a
withSpecialRemote (ExistingSpecialRemote remotename) _ a = do
liftIO $ hPutStrLn stderr "case 1"
withSpecialRemote (ExistingSpecialRemote remotename) _ a =
getEnabledSpecialRemoteByName remotename >>=
maybe (giveup $ "There is no special remote named " ++ remotename)
a