Skip to content

Commit

Permalink
Bug fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Jun 26, 2024
1 parent ba45e76 commit 8a230f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/estark/polygon_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl<'a, F: FieldElement> Backend<'a, F> for PolygonBackend<F> {
}

let tmp_dir;
let output_dir = if let Some(output_dir) = self.0.output_dir {
let output_dir = if let Some(output_dir) = self.0.output_dir.clone() {
output_dir
} else {
tmp_dir = mktemp::Temp::new_dir()?;
Expand Down

0 comments on commit 8a230f8

Please sign in to comment.