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
Some(ChangeId::Id(id))if id == latest_change_id => returnNone,
199
199
Some(ChangeId::Ignore) => returnNone,
200
200
Some(ChangeId::Id(id)) => id,
201
-
None => {
201
+
// The warning is only useful for development, not release tarballs
202
+
Noneif !config.rust_info.is_from_tarball() => {
202
203
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");
203
204
msg.push_str("NOTE: to silence this warning, ");
204
205
msg.push_str(&format!(
205
206
"add `change-id = {latest_change_id}` or `change-id = \"ignore\"` at the top of `bootstrap.toml`"
206
207
));
207
208
returnSome(msg);
208
209
}
210
+
None => returnNone,
209
211
};
210
212
211
213
// Always try to use `change-id` from .last-warned-change-id first. If it doesn't exist,
0 commit comments