From 184fc921a4dd19c4a402d8450024e909595082ca Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Fri, 4 Oct 2024 17:07:02 +0200 Subject: [PATCH] Fix unvendorable [%blob] path The path relative to the project root makes sherlodoc impossible to vendor. Use a relative path instead. --- cli/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/main.ml b/cli/main.ml index 32799c25..445af97f 100644 --- a/cli/main.ml +++ b/cli/main.ml @@ -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)