When running redo-unlock, remove duplicate dependencies.
It's fairly harmless to pass duplicate dependencies to redo-unlock (since it'll only check them once each anyway), but ultimately not useful.
This commit is contained in:
parent
1b616ddcbb
commit
2391f980be
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ class BuildJob:
|
||||||
def _fix(p):
|
def _fix(p):
|
||||||
return state.relpath(os.path.join(vars.BASE, p), here)
|
return state.relpath(os.path.join(vars.BASE, p), here)
|
||||||
argv = (['redo-unlocked', _fix(self.sf.name)] +
|
argv = (['redo-unlocked', _fix(self.sf.name)] +
|
||||||
[_fix(d.name) for d in dirty])
|
list(set(_fix(d.name) for d in dirty)))
|
||||||
meta('check', state.target_relpath(self.t))
|
meta('check', state.target_relpath(self.t))
|
||||||
state.commit()
|
state.commit()
|
||||||
def run():
|
def run():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue