From 62df81f9febe09851881a219f9d278c498e83275 Mon Sep 17 00:00:00 2001 From: NikVolf Date: Tue, 2 Aug 2016 10:54:34 +0200 Subject: [PATCH] add dot --- ipc/codegen/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/codegen/src/lib.rs b/ipc/codegen/src/lib.rs index 4198ff568..8a3b4ba56 100644 --- a/ipc/codegen/src/lib.rs +++ b/ipc/codegen/src/lib.rs @@ -107,7 +107,7 @@ pub fn derive_ipc(src_path: &str) -> Result<(), Error> { let file_name = try!(PathBuf::from(src_path).file_name().ok_or(Error::InvalidFileName).map(|val| val.to_str().unwrap().to_owned())); let mut intermediate_file_name = file_name.clone(); - intermediate_file_name.push_str("rpc.in"); + intermediate_file_name.push_str(".rpc.in"); let intermediate_path = Path::new(&out_dir).join(&intermediate_file_name); let final_path = Path::new(&out_dir).join(&file_name);