Mercurial > public > mercurial-scm > hg-stable
diff hgext/largefiles/overrides.py @ 18547:2e3ec9e6ee6e
largefiles: make verify --lfa and --lfc work without --large
The slightly obscure --lfa and --lfc only worked as modifiers to --large and
could be combined. The documentation was however not clear what they did.
Instead they now imply --large and the description is updated.
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Thu, 24 Jan 2013 23:57:44 +0100 |
parents | 5ed6a375e9ca |
children | 8ba520003ae0 |
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py Mon Feb 04 02:46:53 2013 +0100 +++ b/hgext/largefiles/overrides.py Thu Jan 24 23:57:44 2013 +0100 @@ -274,7 +274,7 @@ contents = opts.pop('lfc', False) result = orig(ui, repo, *pats, **opts) - if large: + if large or all or contents: result = result or lfcommands.verifylfiles(ui, repo, all, contents) return result