We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedc0ea commit a759f05Copy full SHA for a759f05
src/bootstrap/configure.py
@@ -591,7 +591,7 @@ def parse_example_config(known_args, config):
591
with open(rust_dir + "/bootstrap.example.toml") as example_config:
592
example_lines = example_config.read().split("\n")
593
for line in example_lines:
594
- if line.count("=") == 1 and not line.startswith("# "):
+ if line.count("=") >= 1 and not line.startswith("# "):
595
key = line.split("=")[0]
596
key = key.strip(" #")
597
parts = key.split(".")
0 commit comments