Skip to content

Commit

Permalink
minor: raaaaaaaaaaaaawwwwwwww
Browse files Browse the repository at this point in the history
Signed-off-by: Soc Virnyl Estela <[email protected]>
  • Loading branch information
uncomfyhalomacro committed Oct 20, 2024
1 parent 2b3f918 commit 6227781
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions libroast/src/operations/recomprizz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ pub fn recomprizz_opts(recomprizz_args: RecomprizzArgs) -> io::Result<()>

info!("📤 Starting Recomprizz.");
debug!(?recomprizz_args);
let tmp_binding_for_raw = tempfile::TempDir::new().map_err(|err| {
error!(?err, "Failed to create temporary directory");
err
})?;
let tmp_binding_for_raw = tempfile::Builder::new()
.prefix(".raaaaaaaaaaaaaaaaawwwwww")
.rand_bytes(8)
.tempdir()
.inspect_err(|err| {
error!(?err, "Failed to create temporary directory");
})?;
let outpath_for_raw = &tmp_binding_for_raw.path();

let raw_args = RawArgs {
Expand Down

0 comments on commit 6227781

Please sign in to comment.