Skip to content

Commit

Permalink
Fix _parse_prefix_mappings()
Browse files Browse the repository at this point in the history
Summary: Stupid typo

Reviewed By: JurjenLelifeld

Differential Revision: D63475000

fbshipit-source-id: ef131ac12a82594a69356af7e321d88e9bd5ced7
  • Loading branch information
Cullen Walsh authored and facebook-github-bot committed Sep 27, 2024
1 parent 00ca34b commit f13234e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shim/build_defs/lib/oss.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def _filter_empty_strings(string_list):

def _parse_prefix_mappings(raw_rules):
rules = []
for raw_rule in rules:
for raw_rule in raw_rules:
(match, replace) = raw_rule.split("->", 1)

(cell, root_dir) = match.split("//")
Expand Down

0 comments on commit f13234e

Please sign in to comment.