Skip to content

Commit 42fbf3e

Browse files
committed
allow users to override the existing configuration during x setup
Instead of immediately terminating bootstrap, users are now given the option to decide whether they want to override the file or leave it unchanged. Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent 3d6417f commit 42fbf3e

File tree

1 file changed

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

1 file changed

+11
-1
lines changed

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

+11-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,17 @@ impl Step for Profile {
130130
t!(path.canonicalize()).display()
131131
);
132132

133-
crate::exit!(1);
133+
match prompt_user(
134+
"Do you wish to override the existing configuration (which will allow the setup process to continue)?: [y/N]",
135+
) {
136+
Ok(Some(PromptResult::Yes)) => {
137+
t!(fs::remove_file(path));
138+
}
139+
_ => {
140+
println!("Exiting.");
141+
crate::exit!(1);
142+
}
143+
}
134144
}
135145

136146
// for Profile, `run.paths` will have 1 and only 1 element

0 commit comments

Comments
 (0)