Skip to content

Commit

Permalink
Fix the import path of the interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
clarus committed Aug 31, 2017
1 parent 736f5c6 commit e9c10b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface.ml
Expand Up @@ -149,7 +149,7 @@ let of_file (file_name : string) : t =
try open_in_bin file_name with
| Sys_error _ ->
open_in_bin (Filename.dirname Sys.executable_name ^
"/../share/coq:coq-of-ocaml/" ^ file_name) in
"/../share/coq-of-ocaml/" ^ file_name) in
let size = in_channel_length file in
let content = String.make size ' ' in
really_input file content 0 size;
Expand Down

0 comments on commit e9c10b0

Please sign in to comment.