Skip to content

Commit 114ab46

Browse files
committed
do not set change-tracker option with x setup
Signed-off-by: onur-ozkan <[email protected]>
1 parent 7f08aee commit 114ab46

File tree

1 file changed

+1
-4
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-4
lines changed

src/bootstrap/src/core/build_steps/setup.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ use std::{fmt, fs, io};
1616
use sha2::Digest;
1717

1818
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
19-
use crate::utils::change_tracker::CONFIG_CHANGE_HISTORY;
2019
use crate::utils::exec::command;
2120
use crate::utils::helpers::{self, hex_encode};
2221
use crate::{t, Config};
@@ -228,11 +227,9 @@ fn setup_config_toml(path: &PathBuf, profile: Profile, config: &Config) {
228227
return;
229228
}
230229

231-
let latest_change_id = CONFIG_CHANGE_HISTORY.last().unwrap().change_id;
232230
let settings = format!(
233231
"# Includes one of the default files in {PROFILE_DIR}\n\
234-
profile = \"{profile}\"\n\
235-
change-id = {latest_change_id}\n"
232+
profile = \"{profile}\"\n"
236233
);
237234

238235
t!(fs::write(path, settings));

0 commit comments

Comments
 (0)