We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi 😊
I'm on Windows and have a little trouble on PHPStorm hen using Erlang plugin.
It seems (after some research) that the plugin try to retrieve the Erlang version with this command :
erl -noshell -eval 'io:format("~s~n~s",[erlang:system_info(otp_release),erlang:system_info(version)]),erlang:halt().'
BUT, on Windows, it crash... :3
To resolve the problem, I check the right syntax on Windows and this solution work fine :
erl -noshell -eval "io:format('~s~n~s',[erlang:system_info(otp_release),erlang:system_info(version)]),erlang:halt()."
Here I've just replaced ' by " ...
Is it possible to fix that in the plugin please ?! 😅
Thanks a lot.
The text was updated successfully, but these errors were encountered:
ignatov
No branches or pull requests
Hi 😊
I'm on Windows and have a little trouble on PHPStorm hen using Erlang plugin.
It seems (after some research) that the plugin try to retrieve the Erlang version with this command :
erl -noshell -eval 'io:format("~s~n~s",[erlang:system_info(otp_release),erlang:system_info(version)]),erlang:halt().'
BUT, on Windows, it crash... :3
To resolve the problem, I check the right syntax on Windows and this solution work fine :
erl -noshell -eval "io:format('~s~n~s',[erlang:system_info(otp_release),erlang:system_info(version)]),erlang:halt()."
Here I've just replaced ' by " ...
Is it possible to fix that in the plugin please ?! 😅
Thanks a lot.
The text was updated successfully, but these errors were encountered: