erlang-cli icon indicating copy to clipboard operation
erlang-cli copied to clipboard

fix compiler warning in OTP 20 by removing export_all

Open allenan opened this issue 8 years ago • 0 comments

I received the following error message when trying to build this project:

===> Compiling _build/default/lib/cli/src/cli_tests.erl failed
_build/default/lib/cli/src/cli_tests.erl:3: export_all flag enabled - all functions will be exported

This PR removes export_all from the cli tests file, which now raises a compiler error in OTP 20. Instead, only run/0 and run/1 are exported.

allenan avatar Sep 19 '17 20:09 allenan