diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-10-15 15:23:48 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-10-15 15:23:48 -0400 |
commit | a2194926bf04d79816195d79f6549b0276414813 (patch) | |
tree | 1e8ced45945145132dc8bf02ee9e2c17e45c648a /Remote.hs | |
parent | 2ca0a77e228eccd2222fca191b07d62dc25d51ad (diff) |
add a hint about syncing when unable to determine remote uuid
syncing gets the uuid in passing..
Diffstat (limited to 'Remote.hs')
-rw-r--r-- | Remote.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ byNameOnly n = headMaybe . filter matching <$> remoteList matching r = n == name r noRemoteUUIDMsg :: Remote -> String -noRemoteUUIDMsg r = "cannot determine uuid for " ++ name r +noRemoteUUIDMsg r = "cannot determine uuid for " ++ name r ++ " (perhaps you need to run \"git annex sync\"?)" {- Looks up a remote by name (or by UUID, or even by description), - and returns its UUID. Finds even repositories that are not |