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 5773efa commit cfc916eCopy full SHA for cfc916e
src/librustc/session/mod.rs
@@ -778,7 +778,9 @@ pub fn build_session_(sopts: config::Options,
778
779
let working_dir = match env::current_dir() {
780
Ok(dir) => dir.to_string_lossy().into_owned(),
781
- Err(e) => panic!(p_s.span_diagnostic.fatal(&format!("Current directory is invalid: {}", e))),
+ Err(e) => {
782
+ panic!(p_s.span_diagnostic.fatal(&format!("Current directory is invalid: {}", e)))
783
+ }
784
};
785
let working_dir = file_path_mapping.map_prefix(working_dir);
786
0 commit comments