Skip to content

Commit bc62d0b

Browse files
committed
fix
1 parent 5c556b3 commit bc62d0b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/tracing/no/Tracing.sml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
signature Tracing =
22
sig
33

4-
open TheoryPP
5-
val trace_theory : string -> struct_info_record -> unit
4+
val trace_theory : string -> TheoryPP.struct_info_record -> unit
65

76
end
87

src/tracing/yes/Tracing.sml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fun trace_theory name
1414
({theory,parents,types,constants,axioms,definitions,theorems,mldeps,...}: struct_info_record) = let
1515
val file = concat[".holobjs/",name,".tr"]
1616
val () = Portable.export(file, (theory,parents,types,constants,axioms,definitions,theorems,mldeps))
17-
val _ = Unix.execute ("/usr/bin/gzip", [file])
17+
val _ = Unix.execute ("/usr/bin/gzip", ["-f", file])
1818
in () end
1919

2020
end

0 commit comments

Comments
 (0)