elixir: fix RuboCop warnings.

master
Mike McQuaid 2017-06-12 16:44:47 +01:00
parent e083b8b1cf
commit 667d5aeff5
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Erlang18Requirement < Requirement
erl = which("erl")
next unless erl
`#{erl} -noshell -eval 'io:fwrite("~s", [erlang:system_info(otp_release) >= "18"])' -s erlang halt | grep -q '^true'`
next unless $?.exitstatus.zero?
next unless $CHILD_STATUS.exitstatus.zero?
erl
end