Show More
@@ -1238,10 +1238,11 b' def scmutiladdremove(orig, repo, matcher' | |||||
1238 | matchfn = m.matchfn |
|
1238 | matchfn = m.matchfn | |
1239 | m.matchfn = lambda f: f in s.deleted and matchfn(f) |
|
1239 | m.matchfn = lambda f: f in s.deleted and matchfn(f) | |
1240 |
|
1240 | |||
1241 | removelargefiles(repo.ui, repo, True, m, **opts) |
|
1241 | removelargefiles(repo.ui, repo, True, m, **pycompat.strkwargs(opts)) | |
1242 | # Call into the normal add code, and any files that *should* be added as |
|
1242 | # Call into the normal add code, and any files that *should* be added as | |
1243 | # largefiles will be |
|
1243 | # largefiles will be | |
1244 |
added, bad = addlargefiles(repo.ui, repo, True, matcher, |
|
1244 | added, bad = addlargefiles(repo.ui, repo, True, matcher, | |
|
1245 | **pycompat.strkwargs(opts)) | |||
1245 | # Now that we've handled largefiles, hand off to the original addremove |
|
1246 | # Now that we've handled largefiles, hand off to the original addremove | |
1246 | # function to take care of the rest. Make sure it doesn't do anything with |
|
1247 | # function to take care of the rest. Make sure it doesn't do anything with | |
1247 | # largefiles by passing a matcher that will ignore them. |
|
1248 | # largefiles by passing a matcher that will ignore them. |
General Comments 0
You need to be logged in to leave comments.
Login now