diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-18 19:36:59 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-18 19:36:59 +0100 |
commit | 0d5583db5a82473688a313b013203db9242b348b (patch) | |
tree | e8654954b210fc3a37c921623201d4f7e5b25359 | |
parent | 3ee2a4a6d0c0566ffe5e6d393074117b730521c3 (diff) |
rebar_require_vsn: remove trailing whitespace
-rw-r--r-- | src/rebar_require_vsn.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rebar_require_vsn.erl b/src/rebar_require_vsn.erl index 83cb79d..9a0a005 100644 --- a/src/rebar_require_vsn.erl +++ b/src/rebar_require_vsn.erl @@ -77,18 +77,18 @@ check_versions(Config) -> "OTP Release"), case {OtpMaj, OtpMin} >= {MinMaj, MinMin} of true -> - ?DEBUG("~s satisfies the requirement for vsn ~s~n", - [erlang:system_info(otp_release), + ?DEBUG("~s satisfies the requirement for vsn ~s~n", + [erlang:system_info(otp_release), MinOtpVsn]); - false -> + false -> ?ABORT("OTP release ~s or later is required, you have: ~s~n", [MinOtpVsn, erlang:system_info(otp_release)]) - end + end end. version_tuple(OtpRelease, Type) -> - case re:run(OtpRelease, "R(\\d+)B?-?(\\d+)?", [{capture, all, list}]) of + case re:run(OtpRelease, "R(\\d+)B?-?(\\d+)?", [{capture, all, list}]) of {match, [_Full, Maj, Min]} -> {list_to_integer(Maj), list_to_integer(Min)}; {match, [_Full, Maj]} -> |