Skip to content

Commit

Permalink
Merge pull request #76 from raraujosc/patch-2
Browse files Browse the repository at this point in the history
Fix require() to respect overrides.
  • Loading branch information
pcj committed Apr 2, 2017
2 parents 7c8db35 + edaeb21 commit d6f9694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protobuf/internal/require.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def require(keys,
if not key in excludes:
over = overrides.get(key)
data = d + over if over else d
if _needs_install(key, d, verbose=verbose):
if _needs_install(key, data, verbose=verbose):
data["name"] = key
required.append(d)
required.append(data)

return _install(required, verbose)

0 comments on commit d6f9694

Please sign in to comment.