avoid warning when symlink in the repo contains a colon but is not a
pointer to annexed content
This commit is contained in:
parent
56a8a21171
commit
9640417067
2 changed files with 8 additions and 1 deletions
|
@ -137,7 +137,8 @@ lookupFile file = do
|
|||
makekey bs l = do
|
||||
case maybeLookupBackendName bs bname of
|
||||
Nothing -> do
|
||||
unless (null kname || null bname) $
|
||||
unless (null kname || null bname ||
|
||||
not (isLinkToAnnex l)) $
|
||||
warning skip
|
||||
return Nothing
|
||||
Just backend -> return $ Just (k, backend)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue