Skip to content

Commit 91f3bef

Browse files
committed
huh
1 parent edf7e76 commit 91f3bef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

analysis/src/Packages.ml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@ let newBsPackage rootPath =
2424
(* failwith("Wat"); *)
2525
Log.log ("- location: " ^ rootPath);
2626
let compiledBase = BuildSystem.getCompiledBase rootPath in
27+
print_endline "Packages.newBsPackage1";
2728
match FindFiles.findDependencyFiles ~debug:true rootPath config with
28-
| Error e -> Error e
29+
| Error e ->
30+
print_endline "Packages.newBsPackage2";
31+
Error e
2932
| Ok (dependencyDirectories, dependencyModules) -> (
33+
print_endline "Packages.newBsPackage3";
3034
match compiledBase with
3135
| None ->
3236
Error

0 commit comments

Comments
 (0)