Skip to content

Commit

Permalink
Fix unvendorable [%blob] path
Browse files Browse the repository at this point in the history
The path relative to the project root makes sherlodoc impossible to
vendor. Use a relative path instead.
  • Loading branch information
Julow committed Oct 4, 2024
1 parent 77ecc82 commit 184fc92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ let cmd_jsoo =
in
let emit_js_dep filename =
let close, h = if filename = "" then false, stdout else true, open_out filename in
output_string h [%blob "jsoo/sherlodoc.js"] ;
output_string h [%blob "../jsoo/sherlodoc.js"] ;
if close then close_out h
in
Cmd.v info Term.(const emit_js_dep $ target)
Expand Down

0 comments on commit 184fc92

Please sign in to comment.