You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A program to make the rebar application analyzable by Dialyzer.
# The Rebar3 feature [Overrides](https://rebar3.org/docs/configuration/configuration/#overrides)
# could not override the `erl_opts` of the rebar application,
# so the source code is directly rewritten to add `debug_info`.
#
# The reason why this program is not written in `rebar.config` as a one-liner
# is that the Rebar3 feature [Hooks](https://rebar3.org/docs/configuration/configuration/#hooks)
# allows to execute only one command.
# [Hooks uses `open_port/2` to execute a shell command](https://github.com/erlang/rebar3/blob/8f9c87280c5d7b6a6bd4546607a7bb00edc92951/apps/rebar/src/rebar_utils.erl#L196),
# this function does not seem to support multiple command execution.