This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/tools/rust-analyzer/crates
ide-diagnostics/src/handlers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -833,7 +833,7 @@ fn env_expand(
833833 if key. as_str ( ) == "OUT_DIR" {
834834 err = Some ( ExpandError :: other (
835835 span,
836- r#"`OUT_DIR` not set, enable " build scripts" to fix "# ,
836+ r#"`OUT_DIR` not set, build scripts may have failed to run "# ,
837837 ) ) ;
838838 }
839839
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ macro_rules! env { () => {} }
133133macro_rules! concat { () => {} }
134134
135135 include!(concat!(env!("OUT_DIR"), "/out.rs"));
136- //^^^^^^^^^ error: `OUT_DIR` not set, enable " build scripts" to fix
136+ //^^^^^^^^^ error: `OUT_DIR` not set, build scripts may have failed to run
137137"# ,
138138 ) ;
139139 }
@@ -186,7 +186,7 @@ fn main() {
186186 //^^^^^^^ error: expected string literal
187187
188188 env!("OUT_DIR");
189- //^^^^^^^^^ error: `OUT_DIR` not set, enable " build scripts" to fix
189+ //^^^^^^^^^ error: `OUT_DIR` not set, build scripts may have failed to run
190190
191191 compile_error!("compile_error works");
192192 //^^^^^^^^^^^^^ error: compile_error works
You can’t perform that action at this time.
0 commit comments