Skip to content

Commit e58e32a

Browse files
author
default
committed
add a change tracker entry
1 parent dc50770 commit e58e32a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/bootstrap/bootstrap.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1107,8 +1107,8 @@ def bootstrap(args):
11071107
"git clone nor distributed tarball.\nThis build may fail due to missing submodules "
11081108
"unless you put them in place manually.")
11091109

1110-
# Read from `--config`, then `RUST_BOOTSTRAP_CONFIG`, then `./bootstrap.toml` or `./config.toml`,
1111-
# then `bootstrap.toml` or `config.toml` in the root directory.
1110+
# Read from `--config`, then `RUST_BOOTSTRAP_CONFIG`, then `./bootstrap.toml` or
1111+
# `./config.toml`, then `bootstrap.toml` or `config.toml` in the root directory.
11121112
toml_path = args.config or os.getenv('RUST_BOOTSTRAP_CONFIG')
11131113
using_default_path = toml_path is None
11141114
if using_default_path:

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
210210
severity: ChangeSeverity::Info,
211211
summary: "the `wasm-component-ld` tool is now built as part of `build.extended` and can be a member of `build.tools`",
212212
},
213+
ChangeInfo {
214+
change_id: 126875,
215+
severity: ChangeSeverity::Info,
216+
summary: "Rename the bootstrap configuration file from `config.toml` to `bootstrap.toml`.",
217+
},
213218
];

0 commit comments

Comments
 (0)