Skip to content

Commit

Permalink
Fix quotation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
varkor committed Jan 29, 2018
1 parent dc274e6 commit 3d55974
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/librustc_driver/driver.rs
Expand Up @@ -136,7 +136,7 @@ pub fn compile_input(trans: Box<TransCrate>,
if let Some(dir_path) = outputs.conflicts_with_dir() {
sess.err(&format!(
"the generated executable for the input file \"{}\" conflicts with the \
existing directory \"{}\'",
existing directory \"{}\"",
input_path.display(), dir_path.display()));
return Err(CompileIncomplete::Stopped);
}
Expand Down
Expand Up @@ -4,4 +4,4 @@ all:
cp foo.rs $(TMPDIR)/foo.rs
mkdir $(TMPDIR)/foo
$(RUSTC) $(TMPDIR)/foo.rs 2>&1 \
| $(CGREP) -e "the generated executable for the input file \".*foo\.rs\" conflicts with the existing directory \".*foo\'"
| $(CGREP) -e "the generated executable for the input file \".*foo\.rs\" conflicts with the existing directory \".*foo\""

0 comments on commit 3d55974

Please sign in to comment.