We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edf7e76 commit 91f3befCopy full SHA for 91f3bef
analysis/src/Packages.ml
@@ -24,9 +24,13 @@ let newBsPackage rootPath =
24
(* failwith("Wat"); *)
25
Log.log ("- location: " ^ rootPath);
26
let compiledBase = BuildSystem.getCompiledBase rootPath in
27
+ print_endline "Packages.newBsPackage1";
28
match FindFiles.findDependencyFiles ~debug:true rootPath config with
- | Error e -> Error e
29
+ | Error e ->
30
+ print_endline "Packages.newBsPackage2";
31
+ Error e
32
| Ok (dependencyDirectories, dependencyModules) -> (
33
+ print_endline "Packages.newBsPackage3";
34
match compiledBase with
35
| None ->
36
Error
0 commit comments