Skip to content

Commit

Permalink
Fix dialyzer.rebar.config pointing to wrong compat script
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Feb 4, 2017
1 parent f6964a7 commit b72a28a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rebar.dialyzer.config
Expand Up @@ -4,9 +4,10 @@
{cover_enabled, true}.
{xref_checks, [undefined_function_calls]}.
{pre_hooks,[
{"linux|bsd|darwin|solaris", compile, "./crypto_compat.escript"},
{"win32", compile, "escript.exe crypto_compat.escript"}
{"linux|bsd|darwin|solaris", compile, "./compat.escript"},
{"win32", compile, "escript.exe compat.escript"}
]}.
{deps, [
{simple_bridge, "", {git, "git://github.com/nitrogen/simple_bridge", {branch, master}}}
{simple_bridge, "", {git, "git://github.com/nitrogen/simple_bridge", {branch, master}}},
{rekt, "", {git, "git://github.com/nitrogen/rekt", {branch, master}}}
]}.

0 comments on commit b72a28a

Please sign in to comment.