Show More
@@ -900,9 +900,10 b' def override_addremove(orig, ui, repo, *' | |||
|
900 | 900 | # to have handled by original addremove. Monkey patching here makes sure |
|
901 | 901 | # we don't remove the standin in the largefiles code, preventing a very |
|
902 | 902 | # confused state later. |
|
903 | repo._isaddremove = True | |
|
904 | remove_largefiles(ui, repo, *missing, **opts) | |
|
905 | repo._isaddremove = False | |
|
903 | if missing: | |
|
904 | repo._isaddremove = True | |
|
905 | remove_largefiles(ui, repo, *missing, **opts) | |
|
906 | repo._isaddremove = False | |
|
906 | 907 | # Call into the normal add code, and any files that *should* be added as |
|
907 | 908 | # largefiles will be |
|
908 | 909 | add_largefiles(ui, repo, *pats, **opts) |
General Comments 0
You need to be logged in to leave comments.
Login now