Skip to content

Commit

Permalink
chore: addition to previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Dec 15, 2022
1 parent 0150207 commit d7ffa7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/config-schema/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn main() -> Result<(), Box<dyn Error>> {
crate_dir.join("schema.json"),
crate_dir.join("../../tooling/cli/schema.json"),
] {
let mut schema_file = BufWriter::new(File::create(&file)?);
let mut schema_file = BufWriter::new(File::create(file)?);
write!(schema_file, "{schema_str}")?;
}

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ fn copy_resources(resources: ResourcePaths<'_>, path: &Path) -> Result<()> {
let src = src?;
println!("cargo:rerun-if-changed={}", src.display());
let dest = path.join(resource_relpath(&src));
copy_file(&src, &dest)?;
copy_file(&src, dest)?;
}
Ok(())
}
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/src/api/file/extract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ impl<'a, R: Read + Seek> Extract<'a, R> {
// such as: 爱交易.app/, that does not work as expected.
// Here we require the file name must be a valid UTF-8.
let file_name = String::from_utf8(file.name_raw().to_vec())?;
let out_path = into_dir.join(&file_name);
let out_path = into_dir.join(file_name);
if file.is_dir() {
fs::create_dir_all(&out_path)?;
} else {
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/src/api/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ impl Response {
let data = match self.0 {
ResponseType::Json => self.1.json()?,
ResponseType::Text => Value::String(self.1.text()?),
ResponseType::Binary => serde_json::to_value(&self.1.bytes()?)?,
ResponseType::Binary => serde_json::to_value(self.1.bytes()?)?,
};

Ok(ResponseData {
Expand Down

0 comments on commit d7ffa7f

Please sign in to comment.