Skip to content

Commit a95f543

Browse files
committed
fix CI
1 parent 6929bc8 commit a95f543

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

jscomp/main/bsb_main.ml

+3-1
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,11 @@ let program_exit () =
151151
let install_target () =
152152
let (//) = Filename.concat in
153153
let vendor_ninja = Bsb_global_paths.vendor_ninja in
154+
let install_dir = "lib" // "ocaml" in
155+
Bsb_build_util.mkp install_dir;
154156
let install_command = {
155157
Bsb_unix.cmd = vendor_ninja ;
156-
cwd = "lib" // "ocaml";
158+
cwd = install_dir;
157159
args = [| vendor_ninja ; "-f"; ".."//"bs"//"install.ninja"|]
158160
} in
159161
let eid =

lib/4.06.1/bsb.ml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16696,9 +16696,11 @@ let program_exit () =
1669616696
let install_target () =
1669716697
let (//) = Filename.concat in
1669816698
let vendor_ninja = Bsb_global_paths.vendor_ninja in
16699+
let install_dir = "lib" // "ocaml" in
16700+
Bsb_build_util.mkp install_dir;
1669916701
let install_command = {
1670016702
Bsb_unix.cmd = vendor_ninja ;
16701-
cwd = "lib" // "ocaml";
16703+
cwd = install_dir;
1670216704
args = [| vendor_ninja ; "-f"; ".."//"bs"//"install.ninja"|]
1670316705
} in
1670416706
let eid =

0 commit comments

Comments
 (0)