Skip to content

Commit

Permalink
Fix typo in jitlist_bisect.py
Browse files Browse the repository at this point in the history
Summary: The argument is `--initial-jit-list-file`, not `--jit-list-file`.

Reviewed By: carljm

Differential Revision: D49653416

fbshipit-source-id: cfb52c1deb32daa1cfb3567f11c1bc402a6d1ca5
  • Loading branch information
swtaarrs authored and facebook-github-bot committed Sep 26, 2023
1 parent 6e86905 commit 728a9c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/scripts/jitlist_bisect.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def main():
args = parse_args()
log_level = logging.DEBUG if args.verbose else logging.INFO
logging.basicConfig(level=log_level)
run_bisect(args.command, args.jit_list_file)
run_bisect(args.command, args.initial_jit_list_file)


if __name__ == "__main__":
Expand Down

0 comments on commit 728a9c7

Please sign in to comment.