From b64d1745f6824075903e9a3e661fc262d2054e1c Mon Sep 17 00:00:00 2001 From: Yan Chen <48968912+chenyan-dfinity@users.noreply.github.com> Date: Thu, 19 Oct 2023 21:59:27 -0700 Subject: [PATCH] fix js.print_deps (#4254) --- src/js/common.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/common.ml b/src/js/common.ml index 039c2a1eed4..24c57fe0943 100644 --- a/src/js/common.ml +++ b/src/js/common.ml @@ -201,7 +201,7 @@ let wrap_output f = end let print_deps file = - let _ = Pipeline.print_deps file in + let _ = Pipeline.print_deps (Js.to_string file) in let stdout_result = Buffer.contents stdout_buffer in Buffer.clear stdout_buffer; Js.bytestring stdout_result