improve wording

This is to improve this case:

joey@darkstar:~/tmp/yyyy>git-annex trust
git-annex: no remote specified

The command does not need to be run with a remote, any repository name
will do, including eg "here".

Sponsored-by: Brock Spratlen on Patreon
This commit is contained in:
Joey Hess 2022-10-03 13:32:55 -04:00
parent e74c56ed78
commit 99e4dc8d41
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -144,7 +144,7 @@ byNameWithUUID = checkuuid <=< byName
| otherwise = return $ Just r
byName' :: RemoteName -> Annex (Either String Remote)
byName' "" = return $ Left "no remote specified"
byName' "" = return $ Left "no repository name specified"
byName' n = go . filter matching <$> remoteList
where
go [] = Left $ "there is no available git remote named \"" ++ n ++ "\""