You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let latest_change_id = CONFIG_CHANGE_HISTORY.last().unwrap().change_id;
156
156
let warned_id_path = config.out.join("bootstrap").join(".last-warned-change-id");
157
157
158
-
ifletSome(mut id) = config.change_id{
159
-
if id == latest_change_id {
160
-
returnNone;
158
+
letmut id = match config.change_id{
159
+
Some(ChangeId::Id(id))if id == latest_change_id => returnNone,
160
+
Some(ChangeId::Ignore) => returnNone,
161
+
Some(ChangeId::Id(id)) => id,
162
+
None => {
163
+
msg.push_str("WARNING: The `change-id` is missing in the `bootstrap.toml`. This means that you will not be able to track the major changes made to the bootstrap configurations.\n");
164
+
msg.push_str("NOTE: to silence this warning, ");
165
+
msg.push_str(&format!(
166
+
"add `change-id = {latest_change_id}` or change-id = \"ignore\" at the top of `bootstrap.toml`"
167
+
));
168
+
returnSome(msg);
161
169
}
170
+
};
162
171
163
-
// Always try to use `change-id` from .last-warned-change-id first. If it doesn't exist,
164
-
// then use the one from the bootstrap.toml. This way we never show the same warnings
165
-
// more than once.
166
-
ifletOk(t) = fs::read_to_string(&warned_id_path){
167
-
let last_warned_id = usize::from_str(&t)
168
-
.unwrap_or_else(|_| panic!("{} is corrupted.", warned_id_path.display()));
169
-
170
-
// We only use the last_warned_id if it exists in `CONFIG_CHANGE_HISTORY`.
171
-
// Otherwise, we may retrieve all the changes if it's not the highest value.
172
-
// For better understanding, refer to `change_tracker::find_recent_config_change_ids`.
msg.push_str("WARNING: The `change-id` is missing in the `bootstrap.toml`. This means that you will not be able to track the major changes made to the bootstrap configurations.\n");
197
-
msg.push_str("NOTE: to silence this warning, ");
198
-
msg.push_str(&format!(
199
-
"add `change-id = {latest_change_id}` at the top of `bootstrap.toml`"
0 commit comments