mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Check exit codes carefully when running dialyzer
This commit is contained in:
parent
f9390f3e9a
commit
9e73bdbb7d
@ -262,13 +262,16 @@ dialyzer/ejabberd.plt:
|
|||||||
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
||||||
|
|
||||||
erlang_plt: dialyzer/erlang.plt
|
erlang_plt: dialyzer/erlang.plt
|
||||||
@dialyzer --plt dialyzer/erlang.plt --check_plt
|
@dialyzer --plt dialyzer/erlang.plt --check_plt -o dialyzer/erlang.log; \
|
||||||
|
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
||||||
|
|
||||||
deps_plt: dialyzer/deps.plt
|
deps_plt: dialyzer/deps.plt
|
||||||
@dialyzer --plt dialyzer/deps.plt --check_plt
|
@dialyzer --plt dialyzer/deps.plt --check_plt -o dialyzer/deps.log; \
|
||||||
|
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
||||||
|
|
||||||
ejabberd_plt: dialyzer/ejabberd.plt
|
ejabberd_plt: dialyzer/ejabberd.plt
|
||||||
@dialyzer --plt dialyzer/ejabberd.plt --check_plt
|
@dialyzer --plt dialyzer/ejabberd.plt --check_plt -o dialyzer/ejabberd.log; \
|
||||||
|
status=$$? ; if [ $$status -ne 2 ]; then exit $$status; else exit 0; fi
|
||||||
|
|
||||||
dialyzer: erlang_plt deps_plt ejabberd_plt
|
dialyzer: erlang_plt deps_plt ejabberd_plt
|
||||||
@dialyzer --plts dialyzer/*.plt --no_check_plt \
|
@dialyzer --plts dialyzer/*.plt --no_check_plt \
|
||||||
|
Loading…
Reference in New Issue
Block a user