Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Add terminating newline when printing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
punchagan committed Aug 29, 2024
1 parent 94890d5 commit b69e1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let lint (changed_pkgs, new_pkgs) local_repo_dir =
Ok ()
| errors ->
errors |> List.map Lint.msg_of_error |> String.concat "\n"
|> Result.error)
|> Printf.sprintf "%s\n" |> Result.error)

let show_revdeps pkg local_repo_dir no_transitive_revdeps =
(* Get revdeps for the package *)
Expand Down

0 comments on commit b69e1ef

Please sign in to comment.