Show More
@@ -100,10 +100,10 b' def addlargefiles(ui, repo, isaddremove,' | |||
|
100 | 100 | lfmatcher = match_.match(repo.root, '', list(lfpats)) |
|
101 | 101 | |
|
102 | 102 | lfnames = [] |
|
103 |
m = |
|
|
104 | m.bad = lambda x, y: None | |
|
103 | m = matcher | |
|
104 | ||
|
105 | 105 | wctx = repo[None] |
|
106 | for f in repo.walk(m): | |
|
106 | for f in repo.walk(match_.badmatch(m, lambda x, y: None)): | |
|
107 | 107 | exact = m.exact(f) |
|
108 | 108 | lfile = lfutil.standin(f) in wctx |
|
109 | 109 | nfile = f in wctx |
General Comments 0
You need to be logged in to leave comments.
Login now