mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-12-02 12:18:30 +08:00
14 lines
351 B
Erlang
Executable File
14 lines
351 B
Erlang
Executable File
#!/usr/bin/env escript
|
|
|
|
-mode(compile).
|
|
|
|
main(_) ->
|
|
OtpRelease = list_to_integer(erlang:system_info(otp_release)),
|
|
case OtpRelease < 21 of
|
|
true ->
|
|
io:format(standard_error, "ERROR: Erlang/OTP version ~p found. required_min=21, recommended=23~n", [OtpRelease]),
|
|
halt(1);
|
|
false ->
|
|
ok
|
|
end.
|