We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22c616 commit 440ed80Copy full SHA for 440ed80
1 file changed
src/bootstrap/src/core/config/config.rs
@@ -1184,6 +1184,12 @@ impl Config {
1184
exit!(1);
1185
}
1186
1187
+ if matches!(flags_cmd, Subcommand::Fix) {
1188
+ eprintln!(
1189
+ "WARNING: `x fix` is provided on a best-effort basis and does not support all `cargo fix` options correctly."
1190
+ );
1191
+ }
1192
+
1193
// CI should always run stage 2 builds, unless it specifically states otherwise
1194
#[cfg(not(test))]
1195
if flags_stage.is_none() && ci_env.is_running_in_ci() {
0 commit comments