Skip to content

Commit

Permalink
[Debug] Fix dumping queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomáš Dacík authored and Tomáš Dacík committed Jan 16, 2025
1 parent 8b2f5dc commit 0c309cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/debug.ml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ let rec rm path =
let decorate fn = fun arg ->
if not @@ Options.debug () then ()
else if Options.interactive () && not @@ Sys.file_exists (debug_dir ()) then
Sys.mkdir (debug_dir ()) 0o775
Sys.mkdir (debug_dir ()) 0o775; fn arg
else fn arg

(** Initialize debug model *)
Expand Down

0 comments on commit 0c309cf

Please sign in to comment.