23 lines
577 B
OCaml
23 lines
577 B
OCaml
|
|
let read_file file =
|
|
try
|
|
let fh = open_in file in
|
|
try
|
|
let content = really_input_string fh (in_channel_length fh) in
|
|
close_in_noerr fh ;
|
|
content
|
|
with _ ->
|
|
close_in_noerr fh;
|
|
invalid_arg ("Error reading file: " ^ file)
|
|
with _ -> invalid_arg ("Error opening file " ^ file)
|
|
|
|
let () =
|
|
match Sys.argv with
|
|
| [| _ ; file |] ->
|
|
let switch = read_file file in
|
|
let data = OpamFile.SwitchExport.read_from_string switch in
|
|
Opam_graph.dependencies data
|
|
| _ ->
|
|
print_endline "expecting exactly one argument";
|
|
exit 1
|
|
|